attempt to fix ini_set error by using set_include_path Patch by robertoz
[mediawiki.git] / includes / SpecialLongpages.php
blob75f6e5c6e66cfb1f6839c8ed96e0b53c413270fe
1 <?php
2 /**
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
8 /**
11 require_once( 'SpecialShortpages.php' );
13 /**
15 * @package MediaWiki
16 * @subpackage SpecialPage
18 class LongPagesPage extends ShortPagesPage {
20 function getName() {
21 return "Longpages";
24 function sortDescending() {
25 return true;
29 /**
30 * constructor
32 function wfSpecialLongpages()
34 list( $limit, $offset ) = wfCheckLimits();
36 $lpp = new LongPagesPage();
38 $lpp->doQuery( $offset, $limit );