Krinkle has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/387971 )

Change subject: Re-enable $wgAutoloadAttemptLowercase for older branches
......................................................................

Re-enable $wgAutoloadAttemptLowercase for older branches

Follows-up 44c08d5e, which was causing commits to REL1_29 to fail
due to SpecialRecentChanges not existing and something.

Bug: T166759
Change-Id: I80933521a2b08d55c52176d884b5699be315478b
---
M mediawiki/conf.d/00_dev_settings.php
1 file changed, 5 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins 
refs/changes/71/387971/2

diff --git a/mediawiki/conf.d/00_dev_settings.php 
b/mediawiki/conf.d/00_dev_settings.php
index edb2883..3e474ef 100644
--- a/mediawiki/conf.d/00_dev_settings.php
+++ b/mediawiki/conf.d/00_dev_settings.php
@@ -45,5 +45,8 @@
 // Back-compat
 $wgRateLimitLog = $wgDebugLogGroups['ratelimit'];
 
-// Be strict about class name letter-case.
-$wgAutoloadAttemptLowercase = false;
+// Don't apply to REL1_29 and earlier yet
+if ( substr( getenv( 'ZUUL_BRANCH' ), 0, 5 ) !== 'REL1_' ) {
+       // Be strict about class name letter-case.
+       $wgAutoloadAttemptLowercase = false;
+}

-- 
To view, visit https://gerrit.wikimedia.org/r/387971
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I80933521a2b08d55c52176d884b5699be315478b
Gerrit-PatchSet: 2
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Krinkle <krinklem...@gmail.com>
Gerrit-Reviewer: Legoktm <lego...@member.fsf.org>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to