Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -963,7 +963,7 @@ |
964 | 964 | } |
965 | 965 | |
966 | 966 | /** |
967 | | - * ListAdmins --> ListUsers/admin |
| 967 | + * ListAdmins --> ListUsers/sysop |
968 | 968 | */ |
969 | 969 | class SpecialListAdmins extends SpecialRedirectToSpecial { |
970 | 970 | function __construct(){ |
— | — | @@ -972,11 +972,11 @@ |
973 | 973 | } |
974 | 974 | |
975 | 975 | /** |
976 | | - * ListBots --> ListUsers/admin |
| 976 | + * ListBots --> ListUsers/bot |
977 | 977 | */ |
978 | 978 | class SpecialListBots extends SpecialRedirectToSpecial { |
979 | 979 | function __construct(){ |
980 | | - parent::__construct( 'Listadmins', 'Listusers', 'bot' ); |
| 980 | + parent::__construct( 'Listbots', 'Listusers', 'bot' ); |
981 | 981 | } |
982 | 982 | } |
983 | 983 | |