From 370e83bb0dfd0c70de268c93bf07ad5ee0897192 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Fri, 15 Aug 2008 01:29:47 +0200 Subject: Update auf 1.13.0 --- .../specials/SpecialUncategorizedcategories.php | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 includes/specials/SpecialUncategorizedcategories.php (limited to 'includes/specials/SpecialUncategorizedcategories.php') diff --git a/includes/specials/SpecialUncategorizedcategories.php b/includes/specials/SpecialUncategorizedcategories.php new file mode 100644 index 00000000..f23e89ce --- /dev/null +++ b/includes/specials/SpecialUncategorizedcategories.php @@ -0,0 +1,30 @@ +requestedNamespace = NS_CATEGORY; + } + + function getName() { + return "Uncategorizedcategories"; + } +} + +/** + * constructor + */ +function wfSpecialUncategorizedcategories() { + list( $limit, $offset ) = wfCheckLimits(); + + $lpp = new UncategorizedCategoriesPage(); + + return $lpp->doQuery( $offset, $limit ); +} -- cgit v1.2.3-54-g00ecf