Fix bug 9246 by watching a page when the upload\reupload "Watch this page" checkbox...
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index e0e4a47..af0ed26 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 /**
- *
+ * implements Special:Popularpages
  * @addtogroup SpecialPage
  */
 class PopularPagesPage extends QueryPage {
@@ -59,11 +59,11 @@ class PopularPagesPage extends QueryPage {
  * Constructor
  */
 function wfSpecialPopularpages() {
-    list( $limit, $offset ) = wfCheckLimits();
+       list( $limit, $offset ) = wfCheckLimits();
 
-    $ppp = new PopularPagesPage();
+       $ppp = new PopularPagesPage();
 
-    return $ppp->doQuery( $offset, $limit );
+       return $ppp->doQuery( $offset, $limit );
 }
 
-?>
+