comment about extranamespaces values that should not be >255
[lhc/web/wiklou.git] / includes / SpecialShortpages.php
index 3aeaa4f..3faf483 100644 (file)
@@ -25,13 +25,15 @@ class ShortPagesPage extends QueryPage {
        function isExpensive() {
                return true;
        }
+       function isSyndicated() { return false; }
 
        function getSQL() {
                $dbr =& wfGetDB( DB_SLAVE );
                $cur = $dbr->tableName( 'cur' );
+               $name = $dbr->addQuotes( $this->getName() );
                
                return
-                       "SELECT 'Shortpages' as type,
+                       "SELECT $name as type,
                                        cur_namespace as namespace,
                                cur_title as title,
                                LENGTH(cur_text) AS value
@@ -44,9 +46,9 @@ class ShortPagesPage extends QueryPage {
        }
 
        function formatResult( $skin, $result ) {
-               global $wgLang;
+               global $wgLang, $wgContLang;
                $nb = wfMsg( "nbytes", $wgLang->formatNum( $result->value ) );
-               $link = $skin->makeKnownLink( $result->title, "" );
+               $link = $skin->makeKnownLink( $result->title, $wgContLang->convert( $result->title ) );
                return "{$link} ({$nb})";
        }
 }