X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDevelopmentSettings.php;h=668de3975d6c952f8bcc8d5932b1662f2587e6f7;hb=8c653eee9a46218df260cb8d7d81f050b7331351;hp=d93caa7deaa8ab08276761f0d6471314b9995728;hpb=9d9b2e385414c4cde629e8745088dfa48a61f12f;p=lhc%2Fweb%2Fwiklou.git 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';