Capitalization fix in memcached setting
[lhc/web/wiklou.git] / includes / SpecialPopularpages.php
index 23ad570..ca96168 100644 (file)
@@ -1,7 +1,20 @@
 <?php
-
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+
+/**
+ *
+ */
 require_once( "QueryPage.php" );
 
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 class PopularPagesPage extends QueryPage {
 
        function getName() {
@@ -12,6 +25,7 @@ class PopularPagesPage extends QueryPage {
                # cur_counter is not indexed
                return true;
        }
+       function isSyndicated() { return false; }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
@@ -27,15 +41,17 @@ class PopularPagesPage extends QueryPage {
        }
 
        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})";
        }
 }
 
-function wfSpecialPopularpages()
-{
+/**
+ * Constructor
+ */
+function wfSpecialPopularpages() {
     list( $limit, $offset ) = wfCheckLimits();
     
     $ppp = new PopularPagesPage();