Fix timestamp display
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 3 Oct 2004 10:50:34 +0000 (10:50 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 3 Oct 2004 10:50:34 +0000 (10:50 +0000)
includes/SpecialAncientpages.php

index 91bd543..3b055b8 100644 (file)
@@ -45,7 +45,7 @@ class AncientPagesPage extends QueryPage {
        function formatResult( $skin, $result ) {
                global $wgLang;
 
-               $d = $wgLang->timeanddate( wfTimestamp( $result->value ), true );
+               $d = $wgLang->timeanddate( wfTimestamp( TS_MW, $result->value ), true );
                $link = $skin->makeKnownLink( $result->title, "" );
                return "{$link} ({$d})";
        }