Add bug and comment for r35609: * (bug 13434) Show a warning when hash identical...
[lhc/web/wiklou.git] / includes / SpecialMostlinkedcategories.php
index d0a99b3..1b66d48 100644 (file)
@@ -1,8 +1,13 @@
 <?php
+/**
+ * @file
+ * @ingroup SpecialPage
+ */
+
 /**
  * A querypage to show categories ordered in descending order by the pages  in them
  *
- * @addtogroup SpecialPage
+ * @ingroup SpecialPage
  *
  * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
  * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
@@ -35,10 +40,10 @@ class MostlinkedCategoriesPage extends QueryPage {
        /**
         * Fetch user page links and cache their existence
         */
-       function preprocessResults( &$db, &$res ) {
+       function preprocessResults( $db, $res ) {
                $batch = new LinkBatch;
                while ( $row = $db->fetchObject( $res ) )
-                       $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) );
+                       $batch->add( $row->namespace, $row->title );
                $batch->execute();
 
                // Back to start for display
@@ -71,5 +76,3 @@ function wfSpecialMostlinkedCategories() {
 
        $wpp->doQuery( $offset, $limit );
 }
-
-