Add the other existing $skin.css/.js to the message files too to be consistent
[mediawiki.git] / includes / SpecialUncategorizedcategories.php
bloba1787123fa84472abbab86ca7ac6e13b4527dc7b
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
9 */
10 require_once( "SpecialUncategorizedpages.php" );
12 /**
13 * implements Special:Uncategorizedcategories
14 * @ingroup SpecialPage
16 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
17 function UncategorizedCategoriesPage() {
18 $this->requestedNamespace = NS_CATEGORY;
21 function getName() {
22 return "Uncategorizedcategories";
26 /**
27 * constructor
29 function wfSpecialUncategorizedcategories() {
30 list( $limit, $offset ) = wfCheckLimits();
32 $lpp = new UncategorizedCategoriesPage();
34 return $lpp->doQuery( $offset, $limit );