From: Rob Church Date: Fri, 5 May 2006 06:17:24 +0000 (+0000) Subject: Redirect Special:Userlist to Special:Listusers X-Git-Tag: 1.31.0-rc.0~57242 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=ef4e73ed341ca13a8df912b41695b9f0616c1216;p=lhc%2Fweb%2Fwiklou.git Redirect Special:Userlist to Special:Listusers --- 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 ) );