Index: trunk/extensions/Configure/Configure.settings.i18n.php |
— | — | @@ -434,6 +434,7 @@ |
435 | 435 | 'configure-setting-wgMessageCacheType' => 'Message cache type', |
436 | 436 | 'configure-setting-wgLocalisationCacheConf' => 'Localisation cache configuration', |
437 | 437 | 'configure-setting-wgUseLocalMessageCache' => 'Make a local copy of the message cache, in addition to memcached', |
| 438 | + 'configure-setting-wgLocalMessageCacheSerialized' => 'Use PHP serialized format for the local message cache', |
438 | 439 | 'configure-setting-wgMsgCacheExpiry' => 'Message Cache Expiry', |
439 | 440 | 'configure-setting-wgMaxMsgCacheEntrySize' => 'Maximum entry size in the message cache, in bytes', |
440 | 441 | 'configure-setting-wgParserCacheType' => 'Parser cache type', |
Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | $wgDjvuTxt, $wgRedirectOnLogin, $wgHiddenPrefs, $wgSessionHandler, |
9 | 9 | $wgSearchEverythingOnlyLoggedIn. |
10 | 10 | * Removed $wgNamespacesToBeSearchedProject, $wgEnableSerializedMessages, |
11 | | - $wgLocalMessageCache, $wgCheckSerialized, $wgLocalMessageCacheSerialized. |
| 11 | + $wgLocalMessageCache, $wgCheckSerialized. |
12 | 12 | |
13 | 13 | 0.14.7 - 26 June 2009 |
14 | 14 | Updated Semantic Forms extension. |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -356,6 +356,7 @@ |
357 | 357 | 1 => 'DB', 2 => 'Memcached', |
358 | 358 | 3 => 'Accel', 4 => 'DBA' ), |
359 | 359 | 'wgUseLocalMessageCache' => 'bool', |
| 360 | + 'wgLocalMessageCacheSerialized' => 'bool', |
360 | 361 | 'wgMsgCacheExpiry' => 'int', |
361 | 362 | 'wgMaxMsgCacheEntrySize' => 'int', |
362 | 363 | ), |