From: Danny B Date: Sat, 5 Nov 2011 16:35:24 +0000 (+0000) Subject: * fixing Special:ListBots which behaved like Special:ListAdmins X-Git-Tag: 1.31.0-rc.0~26689 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=999324b6744c4dd03386ebf5e42880cb7586e257;p=lhc%2Fweb%2Fwiklou.git * fixing Special:ListBots which behaved like Special:ListAdmins --- diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index b033c9d884..a95046c5c4 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -963,7 +963,7 @@ abstract class SpecialRedirectToSpecial extends RedirectSpecialPage { } /** - * ListAdmins --> ListUsers/admin + * ListAdmins --> ListUsers/sysop */ class SpecialListAdmins extends SpecialRedirectToSpecial { function __construct(){ @@ -972,11 +972,11 @@ class SpecialListAdmins extends SpecialRedirectToSpecial { } /** - * ListBots --> ListUsers/admin + * ListBots --> ListUsers/bot */ class SpecialListBots extends SpecialRedirectToSpecial { function __construct(){ - parent::__construct( 'Listadmins', 'Listusers', 'bot' ); + parent::__construct( 'Listbots', 'Listusers', 'bot' ); } }