Fix fatal error in Special:Export -- invalid title when using Template inclusion
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index d5d6aee..af0ed26 100644 (file)
@@ -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 );
 }
 
-?>
+