Defer populating searchTerms until later on - allows for better highlighting.
[mediawiki.git] / includes / SpecialLongpages.php
blob406598890fda9405d3302dabe0ad8112ded112c3
1 <?php
2 /**
4 * @addtogroup SpecialPage
5 */
7 /**
9 * @addtogroup 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 );