Ori.livneh has uploaded a new change for review. https://gerrit.wikimedia.org/r/177104
Change subject: Only force $wgInternalTidy = false on production ...................................................................... Only force $wgInternalTidy = false on production ..so we can test the tidy extension on labs. Change-Id: Iff7b6317baef24b023d7d78c7a3834fd27f0dc8d --- M wmf-config/CommonSettings.php 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config refs/changes/04/177104/1 diff --git a/wmf-config/CommonSettings.php b/wmf-config/CommonSettings.php index 0656dd6..ff68d8c 100644 --- a/wmf-config/CommonSettings.php +++ b/wmf-config/CommonSettings.php @@ -2679,7 +2679,9 @@ } // For deployment of fix for https://phabricator.wikimedia.org/T758 -- Ori, 01-12-2014 -$wgTidyInternal = false; +if ( $wmfRealm === 'production' ) { + $wgTidyInternal = false; +} if ( $wmgUseUniversalLanguageSelector ) { require_once( "$IP/extensions/UniversalLanguageSelector/UniversalLanguageSelector.php" ); -- To view, visit https://gerrit.wikimedia.org/r/177104 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Iff7b6317baef24b023d7d78c7a3834fd27f0dc8d Gerrit-PatchSet: 1 Gerrit-Project: operations/mediawiki-config Gerrit-Branch: master Gerrit-Owner: Ori.livneh <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
