From c062a9d83d803bbf2aea8ef7b27afb83f9785e6c Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Wed, 21 Nov 2007 07:35:41 +0000 Subject: [PATCH] * (bug 12028) Add Special:Listbots as shortcut for Special:Listusers/bot Patch by Danny B --- RELEASE-NOTES | 2 +- includes/SpecialPage.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 66f46fa336..b3eb8256e1 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -73,7 +73,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN created by another user * dumpTextPass.php can spawn fetchText.php as a subprocess, which should restart cleanly if database connections fail unpleasantly. - +* (bug 12028) Add Special:Listbots as shortcut for Special:Listusers/bot === Bug fixes in 1.12 === diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 1676626a36..9de594b283 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -147,7 +147,8 @@ class SpecialPage 'Mytalk' => array( 'SpecialMytalk' ), 'Mycontributions' => array( 'SpecialMycontributions' ), 'Listadmins' => array( 'SpecialRedirectToSpecial', 'Listadmins', 'Listusers', 'sysop' ), - ); + 'Listbots' => array( 'SpecialRedirectToSpecial', 'Listbots', 'Listusers', 'bot' ), + ); static public $mAliases; static public $mListInitialised = false; -- 2.20.1