From: Amir Sarabadani Date: Thu, 8 Aug 2019 10:37:48 +0000 (+0200) Subject: Set l18n cache to array in DevelopmentSettings.php X-Git-Tag: 1.34.0-rc.0~167^2 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=3936ddb4be46d1287b9a892e5a06282b2d31970d;p=lhc%2Fweb%2Fwiklou.git Set l18n cache to array in DevelopmentSettings.php Bug: T218207 Change-Id: Ib52d766436f487570b26fde54abfb1ff780c3647 --- diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index d93caa7dea..668de3975d 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -27,7 +27,7 @@ ini_set( 'display_errors', 1 ); global $wgDevelopmentWarnings, $wgShowExceptionDetails, $wgShowHostnames, $wgDebugRawPage, $wgCommandLineMode, $wgDebugLogFile, - $wgDBerrorLog, $wgDebugLogGroups; + $wgDBerrorLog, $wgDebugLogGroups, $wgLocalisationCacheConf; // Use of wfWarn() should cause tests to fail $wgDevelopmentWarnings = true; @@ -74,3 +74,6 @@ $wgSQLMode = 'TRADITIONAL'; // Disable legacy javascript globals in CI and for devs (T72470) $wgLegacyJavaScriptGlobals = false; + +// Localisation Cache to StaticArray (T218207) +$wgLocalisationCacheConf['store'] = 'array';