/**
 * constructor
 */
function wfSpecialUncategorizedpages()
{
    list($limit, $offset) = wfCheckLimits();
    $lpp = new UncategorizedPagesPage();
    return $lpp->doQuery($offset, $limit);
}
예제 #2
0
/**
 * 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);
}