* (bug 6243) Fix email for usernames containing dots when using PEAR::Mail
[lhc/web/wiklou.git] / includes / SpecialMostlinkedcategories.php
index 84cac96..0944d2f 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
@@ -29,7 +26,7 @@ class MostlinkedCategoriesPage extends QueryPage {
                $name = $dbr->addQuotes( $this->getName() );
                return
                        "
-                       SELECT 
+                       SELECT
                                $name as type,
                                " . NS_CATEGORY . " as namespace,
                                cl_to as title,
@@ -38,19 +35,17 @@ class MostlinkedCategoriesPage extends QueryPage {
                        GROUP BY cl_to
                        ";
        }
-       
+
        function sortDescending() { return true; }
 
        /**
         * Fetch user page links and cache their existence
         */
        function preprocessResults( &$db, &$res ) {
-               global $wgLinkCache;
-
                $batch = new LinkBatch;
                while ( $row = $db->fetchObject( $res ) )
                        $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) );
-               $batch->execute( $wgLinkCache );
+               $batch->execute();
 
                // Back to start for display
                if ( $db->numRows( $res ) > 0 )
@@ -59,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);
        }
 }