* Rewrote showEXIFdata() to use addWikiText() instead of addHTML()
[lhc/web/wiklou.git] / includes / SpecialLongpages.php
1 <?php
2 /**
3 *
4 * @package MediaWiki
5 * @subpackage SpecialPage
6 */
7
8 /**
9 *
10 */
11 require_once( 'SpecialShortpages.php' );
12
13 /**
14 *
15 * @package MediaWiki
16 * @subpackage SpecialPage
17 */
18 class LongPagesPage extends ShortPagesPage {
19
20 function getName() {
21 return "Longpages";
22 }
23
24 function sortDescending() {
25 return true;
26 }
27 }
28
29 /**
30 * constructor
31 */
32 function wfSpecialLongpages()
33 {
34 list( $limit, $offset ) = wfCheckLimits();
35
36 $lpp = new LongPagesPage();
37
38 $lpp->doQuery( $offset, $limit );
39 }
40
41 ?>