function __construct($name = 'Longpages')
 {
     parent::__construct($name);
 }
/**
 * constructor
 */
function wfSpecialShortpages()
{
    list($limit, $offset) = wfCheckLimits();
    $spp = new ShortPagesPage();
    return $spp->doQuery($offset, $limit);
}