Tidy up the class
[mediawiki.git] / includes / specials / SpecialLongpages.php
blobbe16a02942154d40cf31d9e7cc003931d5fd2c03
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
9 * @ingroup SpecialPage
11 class LongPagesPage extends ShortPagesPage {
13 function getName() {
14 return "Longpages";
17 function sortDescending() {
18 return true;
22 /**
23 * constructor
25 function wfSpecialLongpages() {
26 list( $limit, $offset ) = wfCheckLimits();
28 $lpp = new LongPagesPage();
30 $lpp->doQuery( $offset, $limit );