Rename all the special page class files back to their proper names.
[mediawiki.git] / includes / specials / SpecialUncategorizedcategories.php
blobf23e89ce8b5a84ddafc8e5e79eb491a3b376d8d7
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
8 * implements Special:Uncategorizedcategories
9 * @ingroup SpecialPage
11 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
12 function UncategorizedCategoriesPage() {
13 $this->requestedNamespace = NS_CATEGORY;
16 function getName() {
17 return "Uncategorizedcategories";
21 /**
22 * constructor
24 function wfSpecialUncategorizedcategories() {
25 list( $limit, $offset ) = wfCheckLimits();
27 $lpp = new UncategorizedCategoriesPage();
29 return $lpp->doQuery( $offset, $limit );