From 5d9c74ec25176459e900bf5cc1adbba16db61d1d Mon Sep 17 00:00:00 2001 From: Elliott Eggleston Date: Wed, 2 Dec 2015 11:51:30 -0800 Subject: [PATCH] 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 --- includes/skins/SkinTemplate.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); } -- 2.20.1