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