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