X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/modifier.php?a=blobdiff_plain;f=includes%2Fspecials%2FSpecialListusers.php;h=2c35815dba87c6818373416b4177e602916dbcc1;hb=7edafc29c6c8427930bbcde45149575c58e5373d;hp=1a8dccf4de09262c458e3db5a44b56ae99608803;hpb=adae996840b9e782f6e14b21c433a83e37c3a74e;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/specials/SpecialListusers.php b/includes/specials/SpecialListusers.php index 1a8dccf4de..2c35815dba 100644 --- a/includes/specials/SpecialListusers.php +++ b/includes/specials/SpecialListusers.php @@ -29,9 +29,7 @@ * @ingroup SpecialPage */ class SpecialListUsers extends IncludableSpecialPage { - /** - * Constructor - */ + public function __construct() { parent::__construct( 'Listusers' ); } @@ -79,25 +77,3 @@ class SpecialListUsers extends IncludableSpecialPage { return 'users'; } } - -/** - * Redirect page: Special:ListAdmins --> Special:ListUsers/sysop. - * - * @ingroup SpecialPage - */ -class SpecialListAdmins extends SpecialRedirectToSpecial { - function __construct() { - parent::__construct( 'Listadmins', 'Listusers', 'sysop' ); - } -} - -/** - * Redirect page: Special:ListBots --> Special:ListUsers/bot. - * - * @ingroup SpecialPage - */ -class SpecialListBots extends SpecialRedirectToSpecial { - function __construct() { - parent::__construct( 'Listbots', 'Listusers', 'bot' ); - } -}