From 3936ddb4be46d1287b9a892e5a06282b2d31970d Mon Sep 17 00:00:00 2001 From: Amir Sarabadani Date: Thu, 8 Aug 2019 12:37:48 +0200 Subject: [PATCH] Set l18n cache to array in DevelopmentSettings.php Bug: T218207 Change-Id: Ib52d766436f487570b26fde54abfb1ff780c3647 --- includes/DevelopmentSettings.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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'; -- 2.20.1