From ef4e73ed341ca13a8df912b41695b9f0616c1216 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Fri, 5 May 2006 06:17:24 +0000 Subject: [PATCH] Redirect Special:Userlist to Special:Listusers --- RELEASE-NOTES | 1 + includes/SpecialPage.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 0fcac9bcf3..060c55b2a0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -203,6 +203,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Added new group-X and group-X-member messages * Rewritten removeUnusedAccounts to be more efficient, print names of inactive accounts +* Redirect Special:Userlist to Special:Listusers == Compatibility == diff --git a/includes/SpecialPage.php b/includes/SpecialPage.php index 56992bb30b..6c0f2e4aad 100644 --- a/includes/SpecialPage.php +++ b/includes/SpecialPage.php @@ -188,7 +188,8 @@ class SpecialPage 'Mytalk' => Title::makeTitle( NS_USER_TALK, $wgUser->getName() ), 'Mycontributions' => Title::makeTitle( NS_SPECIAL, 'Contributions/' . $wgUser->getName() ), 'Listadmins' => Title::makeTitle( NS_SPECIAL, 'Listusers/sysop' ), # @bug 2832 - 'Randompage' => Title::makeTitle( NS_SPECIAL, 'Random' ) + 'Randompage' => Title::makeTitle( NS_SPECIAL, 'Random' ), + 'Userlist' => Title::makeTitle( NS_SPECIAL, 'Listusers' ) ); wfRunHooks( 'SpecialPageGetRedirect', array( &$redirects ) ); -- 2.20.1