* Fixed unclosed <p> tag
[lhc/web/wiklou.git] / includes / SpecialUncategorizedcategories.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 */
11 require_once( "SpecialUncategorizedpages.php" );
12
13 /**
14 *
15 * @package MediaWiki
16 * @subpackage SpecialPage
17 */
18 class UncategorizedCategoriesPage extends UncategorizedPagesPage {
19 function UncategorizedCategoriesPage() {
20 $this->requestedNamespace = NS_CATEGORY;
21 }
22
23 function getName() {
24 return "Uncategorizedcategories";
25 }
26 }
27
28 /**
29 * constructor
30 */
31 function wfSpecialUncategorizedcategories() {
32 list( $limit, $offset ) = wfCheckLimits();
33
34 $lpp = new UncategorizedCategoriesPage();
35
36 return $lpp->doQuery( $offset, $limit );
37 }
38
39 ?>