diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-12-15 18:02:47 +0100 |
commit | 396b28f3d881f5debd888ba9bb9b47c2d478a76f (patch) | |
tree | 10d6e1a721ee4ef69def34a57f02d7eb3fc9e31e /includes/SpecialUncategorizedcategories.php | |
parent | 0be4d3ccf6c4fe98a72704f9463ecdea2ee5e615 (diff) |
update to Mediawiki 1.13.3; some cleanups
Diffstat (limited to 'includes/SpecialUncategorizedcategories.php')
-rw-r--r-- | includes/SpecialUncategorizedcategories.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/includes/SpecialUncategorizedcategories.php b/includes/SpecialUncategorizedcategories.php deleted file mode 100644 index 67f87aa8..00000000 --- a/includes/SpecialUncategorizedcategories.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php -/** - * - * @addtogroup SpecialPage - */ - -/** - * - */ -require_once( "SpecialUncategorizedpages.php" ); - -/** - * implements Special:Uncategorizedcategories - * @addtogroup SpecialPage - */ -class UncategorizedCategoriesPage extends UncategorizedPagesPage { - function UncategorizedCategoriesPage() { - $this->requestedNamespace = NS_CATEGORY; - } - - function getName() { - return "Uncategorizedcategories"; - } -} - -/** - * constructor - */ -function wfSpecialUncategorizedcategories() { - list( $limit, $offset ) = wfCheckLimits(); - - $lpp = new UncategorizedCategoriesPage(); - - return $lpp->doQuery( $offset, $limit ); -} - - |