Fix {{NUMBEROFADMINS}} magic word
[lhc/web/wiklou.git] / includes / SpecialMostrevisions.php
index 893d7d4..81a49c9 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * A special page to show pages in the 
+ * A special page to show pages in the
  *
  * @package MediaWiki
  * @subpackage SpecialPage
@@ -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
@@ -42,17 +39,18 @@ class MostrevisionsPage extends QueryPage {
        }
 
        function formatResult( $skin, $result ) {
-               global $wgContLang;
+               global $wgLang, $wgContLang;
 
                $nt = Title::makeTitle( $result->namespace, $result->title );
                $text = $wgContLang->convert( $nt->getPrefixedText() );
-               
-               $plink = $skin->makeKnownLink( $nt->getPrefixedText(), $text );
-               
-               $nl = wfMsg( 'nrevisions', $result->value );
+
+               $plink = $skin->makeKnownLinkObj( $nt, $text );
+
+               $nl = wfMsgExt( 'nrevisions', array( 'parsemag', 'escape'),
+                       $wgLang->formatNum( $result->value ) );
                $nlink = $skin->makeKnownLinkObj( $nt, $nl, 'action=history' );
 
-               return "{$plink} ({$nlink})";
+               return wfSpecialList($plink, $nlink);
        }
 }