jenkins-bot has submitted this change and it was merged.

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(-)

Approvals:
  Ori.livneh: Looks good to me, approved
  jenkins-bot: Verified



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: merged
Gerrit-Change-Id: Iff7b6317baef24b023d7d78c7a3834fd27f0dc8d
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Ori.livneh <[email protected]>
Gerrit-Reviewer: Ori.livneh <[email protected]>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to