From: James D. Forrester Date: Fri, 19 Jul 2019 20:53:57 +0000 (-0700) Subject: DevelopmentSettings: Disable legacy javascript globals in CI and for devs X-Git-Tag: 1.34.0-rc.0~940^2 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=ffd802a3868d565bd83fc70b59ced780e02ba25d;hp=7777aae126cbeacd98db59222b584f902773dda7 DevelopmentSettings: Disable legacy javascript globals in CI and for devs Bug: T72470 Change-Id: Iedd3a9c8e541bc4cc657753e6ae3389f0393ed64 --- diff --git a/includes/DevelopmentSettings.php b/includes/DevelopmentSettings.php index d2f26b30c6..dac9d65ea0 100644 --- a/includes/DevelopmentSettings.php +++ b/includes/DevelopmentSettings.php @@ -57,3 +57,6 @@ unset( $logDir ); // Disable rate-limiting to allow integration tests to run unthrottled // in CI and for devs locally (T225796) $wgRateLimits = []; + +// Disable legacy javascript globals in CI and for devs (T72470) +$wgLegacyJavaScriptGlobals = true;