* Add form to RCLinked and add to sp:specialpages
[lhc/web/wiklou.git] / includes / SpecialMostlinkedcategories.php
index 6951e45..9d7a968 100644 (file)
@@ -2,21 +2,12 @@
 /**
  * A querypage to show categories ordered in descending order by the pages  in them
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  *
  * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
  * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
-
-/* */
-require_once 'QueryPage.php';
-
-/**
- * @package MediaWiki
- * @subpackage SpecialPage
- */
 class MostlinkedCategoriesPage extends QueryPage {
 
        function getName() { return 'Mostlinkedcategories'; }
@@ -24,8 +15,8 @@ class MostlinkedCategoriesPage extends QueryPage {
        function isSyndicated() { return false; }
 
        function getSQL() {
-               $dbr =& wfGetDB( DB_SLAVE );
-               extract( $dbr->tableNames( 'categorylinks', 'page' ) );
+               $dbr = wfGetDB( DB_SLAVE );
+               $categorylinks = $dbr->tableName( 'categorylinks' );
                $name = $dbr->addQuotes( $this->getName() );
                return
                        "
@@ -35,7 +26,7 @@ class MostlinkedCategoriesPage extends QueryPage {
                                cl_to as title,
                                COUNT(*) as value
                        FROM $categorylinks
-                       GROUP BY cl_to
+                       GROUP BY 1,2,3
                        ";
        }
 
@@ -44,10 +35,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
@@ -81,4 +72,4 @@ function wfSpecialMostlinkedCategories() {
        $wpp->doQuery( $offset, $limit );
 }
 
-?>
+