* Simple rate limiter for edits and page moves; set $wgRateLimits
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index a261ce1..4e1a088 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 /**
  *
+ * @package MediaWiki
+ * @subpackage SpecialPage
  */
 
 /**
@@ -10,6 +12,8 @@ require_once( "QueryPage.php" );
 
 /**
  *
+ * @package MediaWiki
+ * @subpackage SpecialPage
  */
 class PopularPagesPage extends QueryPage {
 
@@ -18,26 +22,27 @@ class PopularPagesPage extends QueryPage {
        }
 
        function isExpensive() {
-               # cur_counter is not indexed
+               # page_counter is not indexed
                return true;
        }
+       function isSyndicated() { return false; }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
-               $cur = $dbr->tableName( 'cur' );
+               $page = $dbr->tableName( 'page' );
 
                return
                        "SELECT 'Popularpages' as type,
-                               cur_namespace as namespace,
-                               cur_title as title,
-                               cur_counter as value
-                       FROM $cur
-                       WHERE cur_namespace=0 AND cur_is_redirect=0";
+                               page_namespace as namespace,
+                               page_title as title,
+                               page_counter as value
+                       FROM $page
+                       WHERE page_namespace=".NS_MAIN." AND page_is_redirect=0";
        }
 
        function formatResult( $skin, $result ) {
-               global $wgLang;
-               $link = $skin->makeKnownLink( $result->title, "" );
+               global $wgLang, $wgContLang;
+               $link = $skin->makeKnownLink( $result->title, $wgContLang->convert( $result->title ) );
                $nv = wfMsg( "nviews", $wgLang->formatNum( $result->value ) );
                return "{$link} ({$nv})";
        }