From 999324b6744c4dd03386ebf5e42880cb7586e257 Mon Sep 17 00:00:00 2001 From: Danny B Date: Sat, 5 Nov 2011 16:35:24 +0000 Subject: [PATCH] * fixing Special:ListBots which behaved like Special:ListAdmins --- includes/SpecialPage.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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' ); } } -- 2.20.1