From: Brion Vibber Date: Sun, 3 Oct 2004 10:50:34 +0000 (+0000) Subject: Fix timestamp display X-Git-Tag: 1.5.0alpha1~1666 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=80d84a2af775ef922d17ea6a7c729a8d37ee9c0e;p=lhc%2Fweb%2Fwiklou.git Fix timestamp display --- diff --git a/includes/SpecialAncientpages.php b/includes/SpecialAncientpages.php index 91bd543765..3b055b8c2a 100644 --- a/includes/SpecialAncientpages.php +++ b/includes/SpecialAncientpages.php @@ -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})"; }