Tell regexp parser to use extra analysis on external link regexp;
[lhc/web/wiklou.git] / includes / SpecialAncientpages.php
index ac7c798..f799cc2 100644 (file)
@@ -24,6 +24,8 @@ class AncientPagesPage extends QueryPage {
        function isExpensive() {
                return parent::isExpensive() ;
        }
+       
+       function isSyndicated() { return false; }
 
        function getSQL() {
                $db =& wfGetDB( DB_SLAVE );
@@ -33,7 +35,7 @@ class AncientPagesPage extends QueryPage {
                        "SELECT 'Ancientpages' as type,
                                        cur_namespace as namespace,
                                cur_title as title,
-                               UNIX_TIMESTAMP(cur_timestamp) as value
+                               cur_timestamp as value
                        FROM $cur $use_index
                        WHERE cur_namespace=0 AND cur_is_redirect=0";
        }
@@ -43,10 +45,10 @@ class AncientPagesPage extends QueryPage {
        }
 
        function formatResult( $skin, $result ) {
-               global $wgLang;
+               global $wgLang, $wgContLang;
 
-               $d = $wgLang->timeanddate( wfUnix2Timestamp( $result->value ), true );
-               $link = $skin->makeKnownLink( $result->title, "" );
+               $d = $wgLang->timeanddate( wfTimestamp( TS_MW, $result->value ), true );
+               $link = $skin->makeKnownLink( $result->title, $wgContLang->convert( $result->title) );
                return "{$link} ({$d})";
        }
 }