From: Alexandre Emsenhuber Date: Sun, 4 Jul 2010 10:21:59 +0000 (+0000) Subject: Remove array( ... ) from SpecialMypage, SpecialMytalk and SpecialMycontributions... X-Git-Tag: 1.31.0-rc.0~36279 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=c095b06a717ea3f49bef372055970b3fd7f543a7;p=lhc%2Fweb%2Fwiklou.git Remove array( ... ) from SpecialMypage, SpecialMytalk and SpecialMycontributions for consistency with other special pages --- diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 182c1497ec..1f539bb613 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -186,9 +186,9 @@ class SpecialPage { 'Listadmins' => array( 'SpecialRedirectToSpecial', 'Listadmins', 'Listusers', 'sysop' ), 'Listbots' => array( 'SpecialRedirectToSpecial', 'Listbots', 'Listusers', 'bot' ), 'Movepage' => array( 'UnlistedSpecialPage', 'Movepage' ), - 'Mycontributions' => array( 'SpecialMycontributions' ), - 'Mypage' => array( 'SpecialMypage' ), - 'Mytalk' => array( 'SpecialMytalk' ), + 'Mycontributions' => 'SpecialMycontributions', + 'Mypage' => 'SpecialMypage', + 'Mytalk' => 'SpecialMytalk', 'Revisiondelete' => 'SpecialRevisionDelete', 'RevisionMove' => 'SpecialRevisionMove', 'Specialpages' => array( 'UnlistedSpecialPage', 'Specialpages' ),