function __construct($name = 'Uncategorizedcategories')
 {
     parent::__construct($name);
     $this->requestedNamespace = NS_CATEGORY;
 }
 public function __construct($name = 'Uncategorizedtemplates')
 {
     parent::__construct($name);
     $this->requestedNamespace = NS_TEMPLATE;
 }
/**
 * constructor
 */
function wfSpecialUncategorizedpages()
{
    list($limit, $offset) = wfCheckLimits();
    $lpp = new UncategorizedPagesPage();
    return $lpp->doQuery($offset, $limit);
}
/**
 * constructor
 */
function wfSpecialUncategorizedpages()
{
    list($limit, $offset) = wfCheckLimits();
    $lpp = new UncategorizedPagesPage();
    //XXADDED
    global $wgOut;
    $wgOut->addWikiText(wfMsg("Uncategorizedpages_info", wfMsg('templates_further_editing')));
    return $lpp->doQuery($offset, $limit);
}