Add bug and comment for r35609: * (bug 13434) Show a warning when hash identical...
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index cd2f60e..eb57273 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 /**
- *
- * @addtogroup SpecialPage
+ * @file
+ * @ingroup SpecialPage
  */
 
 /**
  * implements Special:Popularpages
- * @addtogroup SpecialPage
+ * @ingroup SpecialPage
  */
 class PopularPagesPage extends QueryPage {
 
@@ -24,7 +24,7 @@ class PopularPagesPage extends QueryPage {
                $dbr = wfGetDB( DB_SLAVE );
                $page = $dbr->tableName( 'page' );
 
-               $query = 
+               $query =
                        "SELECT 'Popularpages' as type,
                                page_namespace as namespace,
                                page_title as title,
@@ -65,5 +65,3 @@ function wfSpecialPopularpages() {
 
        return $ppp->doQuery( $offset, $limit );
 }
-
-?>