From: Elliott Eggleston Date: Wed, 2 Dec 2015 19:51:30 +0000 (-0800) Subject: Fix case for special pages (was breaking tests) X-Git-Tag: 1.31.0-rc.0~8841 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22messagerie%22%29%20.%20%22?a=commitdiff_plain;h=5d9c74ec25176459e900bf5cc1adbba16db61d1d;p=lhc%2Fweb%2Fwiklou.git Fix case for special pages (was breaking tests) Change I6f44e3e5d97ea917e4a03af47f3795792e4ca122 added some calls to make special page URLs with the wrong case. This is breaking tests in extensions, e.g. https://integration.wikimedia.org/ci/job/mwext-DonationInterface-testextension-zend/2097/consoleFull Change-Id: Ica66b314088275d43b67e207cedea97a5f1a7350 --- diff --git a/includes/skins/SkinTemplate.php b/includes/skins/SkinTemplate.php index e796582ee5..163f3d57ca 100644 --- a/includes/skins/SkinTemplate.php +++ b/includes/skins/SkinTemplate.php @@ -675,12 +675,12 @@ class SkinTemplate extends Skin { // huge loss. $personal_urls['anontalk'] = array( 'text' => $this->msg( 'anontalk' )->text(), - 'href' => self::makeSpecialUrlSubpage( 'MyTalk', false ), + 'href' => self::makeSpecialUrlSubpage( 'Mytalk', false ), 'active' => false ); $personal_urls['anoncontribs'] = array( 'text' => $this->msg( 'anoncontribs' )->text(), - 'href' => self::makeSpecialUrlSubpage( 'MyContributions', false ), + 'href' => self::makeSpecialUrlSubpage( 'Mycontributions', false ), 'active' => false ); }