Code style tweaks per brion's suggestions on Wikitech-l
[lhc/web/wiklou.git] / includes / SpecialMostrevisions.php
index 8b16810..676923a 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
@@ -34,25 +31,26 @@ class MostrevisionsPage extends QueryPage {
                                page_title as title,
                                COUNT(*) as value
                        FROM $revision
-                       LEFT JOIN $page ON page_id = rev_page
+                       JOIN $page ON page_id = rev_page
                        WHERE page_namespace = " . NS_MAIN . "
-                       GROUP BY rev_page
+                       GROUP BY 1,2,3
                        HAVING COUNT(*) > 1
                        ";
        }
 
        function formatResult( $skin, $result ) {
-               global $wgContLang;
+               global $wgLang, $wgContLang;
 
                $nt = Title::makeTitle( $result->namespace, $result->title );
                $text = $wgContLang->convert( $nt->getPrefixedText() );
-               
+
                $plink = $skin->makeKnownLinkObj( $nt, $text );
-               
-               $nl = wfMsg( 'nrevisions', $result->value );
+
+               $nl = wfMsgExt( 'nrevisions', array( 'parsemag', 'escape'),
+                       $wgLang->formatNum( $result->value ) );
                $nlink = $skin->makeKnownLinkObj( $nt, $nl, 'action=history' );
 
-               return "$plink ($nlink)";
+               return wfSpecialList($plink, $nlink);
        }
 }