summaryrefslogtreecommitdiff
path: root/includes/SpecialUncategorizedtemplates.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialUncategorizedtemplates.php')
-rw-r--r--includes/SpecialUncategorizedtemplates.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/includes/SpecialUncategorizedtemplates.php b/includes/SpecialUncategorizedtemplates.php
deleted file mode 100644
index fb785e00..00000000
--- a/includes/SpecialUncategorizedtemplates.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-/**
- * Special page lists all uncategorised pages in the
- * template namespace
- *
- * @addtogroup SpecialPage
- * @author Rob Church <robchur@gmail.com>
- */
-class UncategorizedTemplatesPage extends UncategorizedPagesPage {
-
- var $requestedNamespace = NS_TEMPLATE;
-
- public function getName() {
- return 'Uncategorizedtemplates';
- }
-
-}
-
-/**
- * Main execution point
- *
- * @param mixed $par Parameter passed to the page
- */
-function wfSpecialUncategorizedtemplates() {
- list( $limit, $offset ) = wfCheckLimits();
- $utp = new UncategorizedTemplatesPage();
- $utp->doQuery( $offset, $limit );
-}
-
-