summaryrefslogtreecommitdiff
path: root/includes/SpecialLongpages.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/SpecialLongpages.php')
-rw-r--r--includes/SpecialLongpages.php15
1 files changed, 6 insertions, 9 deletions
diff --git a/includes/SpecialLongpages.php b/includes/SpecialLongpages.php
index 3736d6fc..40659889 100644
--- a/includes/SpecialLongpages.php
+++ b/includes/SpecialLongpages.php
@@ -1,14 +1,12 @@
<?php
/**
*
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
*/
/**
*
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
*/
class LongPagesPage extends ShortPagesPage {
@@ -24,13 +22,12 @@ class LongPagesPage extends ShortPagesPage {
/**
* constructor
*/
-function wfSpecialLongpages()
-{
- list( $limit, $offset ) = wfCheckLimits();
+function wfSpecialLongpages() {
+ list( $limit, $offset ) = wfCheckLimits();
- $lpp = new LongPagesPage();
+ $lpp = new LongPagesPage();
- $lpp->doQuery( $offset, $limit );
+ $lpp->doQuery( $offset, $limit );
}
?>