diff --git a/lang/en/cache.php b/lang/en/cache.php index 399c49d68f7..6a42f24f024 100644 --- a/lang/en/cache.php +++ b/lang/en/cache.php @@ -34,7 +34,6 @@ $string['area'] = 'Area'; $string['caching'] = 'Caching'; $string['cacheadmin'] = 'Cache administration'; $string['cacheconfig'] = 'Configuration'; -$string['cachedef_config'] = 'Config settings'; $string['cachedef_databasemeta'] = 'Database meta information'; $string['cachedef_eventinvalidation'] = 'Event invalidation'; $string['cachedef_locking'] = 'Locking'; @@ -118,4 +117,4 @@ $string['supports_keyawareness'] = 'key awareness'; $string['tested'] = 'Tested'; $string['testperformance'] = 'Test performance'; $string['unsupportedmode'] = 'Unsupported mode'; -$string['untestable'] = 'Untestable'; \ No newline at end of file +$string['untestable'] = 'Untestable'; diff --git a/lib/db/caches.php b/lib/db/caches.php index 5d44fd1241e..6c3ebe0085a 100644 --- a/lib/db/caches.php +++ b/lib/db/caches.php @@ -51,18 +51,6 @@ $definitions = array( 'persistentmaxsize' => 2 ), - // Used to store data from the config + config_plugins table in the database. - // The key used is the component: - // - core for all core config settings - // - plugin component for all plugin settings. - // Persistence is used because normally several settings within a script. - 'config' => array( - 'mode' => cache_store::MODE_APPLICATION, - 'persistent' => true, - 'simplekeys' => true, - 'simpledata' => true - ), - // Event invalidation cache. // This cache is used to manage event invalidation, its keys are the event names. // Whenever something is invalidated it is both purged immediately and an event record created with the timestamp. diff --git a/version.php b/version.php index 32beb69381c..058c8f20ed8 100644 --- a/version.php +++ b/version.php @@ -30,7 +30,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2012112700.00; // YYYYMMDD = weekly release date of this DEV branch +$version = 2012112700.01; // YYYYMMDD = weekly release date of this DEV branch // RR = release increments - 00 in DEV branches // .XX = incremental changes