Redirect Special:Userlist to Special:Listusers
authorRob Church <robchurch@users.mediawiki.org>
Fri, 5 May 2006 06:17:24 +0000 (06:17 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Fri, 5 May 2006 06:17:24 +0000 (06:17 +0000)
RELEASE-NOTES
includes/SpecialPage.php

index 0fcac9b..060c55b 100644 (file)
@@ -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 ==
 
index 56992bb..6c0f2e4 100644 (file)
@@ -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 ) );