* Removed this stub file that did nothing but redirect Special:Listadmins to
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 11 May 2005 03:16:55 +0000 (03:16 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Wed, 11 May 2005 03:16:55 +0000 (03:16 +0000)
 Special:Listusers, moved that functionality into SpecialPage.php

includes/SpecialListadmins.php [deleted file]

diff --git a/includes/SpecialListadmins.php b/includes/SpecialListadmins.php
deleted file mode 100644 (file)
index 63e9e5f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
- * This old a redirect to Special:Listusers that now implement a filter
- * by user groups. The listadmins special page is now deprecated but kept
- * for backward compatibility.
- * 
- * @package MediaWiki
- * @subpackage SpecialPage
- * @deprecated
- */
-
-/**
- * Just redirect to Special:Listusers.
- * Kept for backward compatibility.
- */
-function wfSpecialListadmins() {
-       global $wgOut;
-       $t = Title::makeTitle( NS_SPECIAL, "Listusers" );
-       $wgOut->redirect ($t->getFullURL());
-}
-
-
-?>