diff options
Diffstat (limited to 'includes/SpecialLongpages.php')
-rw-r--r-- | includes/SpecialLongpages.php | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/includes/SpecialLongpages.php b/includes/SpecialLongpages.php deleted file mode 100644 index a8a1e199..00000000 --- a/includes/SpecialLongpages.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -/** - * - * @addtogroup SpecialPage - */ - -/** - * - * @addtogroup SpecialPage - */ -class LongPagesPage extends ShortPagesPage { - - function getName() { - return "Longpages"; - } - - function sortDescending() { - return true; - } -} - -/** - * constructor - */ -function wfSpecialLongpages() { - list( $limit, $offset ) = wfCheckLimits(); - - $lpp = new LongPagesPage(); - - $lpp->doQuery( $offset, $limit ); -} - - |