summaryrefslogtreecommitdiff
path: root/includes/SpecialUncategorizedcategories.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialUncategorizedcategories.php')
-rw-r--r--includes/SpecialUncategorizedcategories.php37
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 );
-}
-
-