From 80d84a2af775ef922d17ea6a7c729a8d37ee9c0e Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 3 Oct 2004 10:50:34 +0000 Subject: [PATCH] Fix timestamp display --- includes/SpecialAncientpages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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})"; } -- 2.20.1