Fix NS_PROJECT_TALK (bug #7792)
[lhc/web/wiklou.git] / includes / SpecialMostlinkedcategories.php
index e733177..e1f8484 100644 (file)
@@ -10,9 +10,6 @@
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 
-/* */
-require_once 'QueryPage.php';
-
 /**
  * @package MediaWiki
  * @subpackage SpecialPage
@@ -25,20 +22,20 @@ class MostlinkedCategoriesPage extends QueryPage {
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
-               extract( $dbr->tableNames( 'categorylinks', 'page' ) );
+               $categorylinks = $dbr->tableName( 'categorylinks' );
                $name = $dbr->addQuotes( $this->getName() );
                return
                        "
-                       SELECT 
+                       SELECT
                                $name as type,
                                " . NS_CATEGORY . " as namespace,
                                cl_to as title,
                                COUNT(*) as value
                        FROM $categorylinks
-                       GROUP BY cl_to
+                       GROUP BY 1,2,3
                        ";
        }
-       
+
        function sortDescending() { return true; }
 
        /**
@@ -57,15 +54,16 @@ class MostlinkedCategoriesPage extends QueryPage {
        }
 
        function formatResult( $skin, $result ) {
-               global $wgContLang;
+               global $wgLang, $wgContLang;
 
                $nt = Title::makeTitle( $result->namespace, $result->title );
                $text = $wgContLang->convert( $nt->getText() );
-               
+
                $plink = $skin->makeLinkObj( $nt, htmlspecialchars( $text ) );
-               
-               $nlinks = wfMsg( 'nlinks', $result->value );
-               return "$plink ($nlinks)";
+
+               $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
+                       $wgLang->formatNum( $result->value ) );
+               return wfSpecialList($plink, $nlinks);
        }
 }