From 9bf9d1cc78edbcd1f09d93ea61f46db7ebd5b057 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 7 Nov 2008 21:19:34 +0000 Subject: [PATCH] Return TS in MW format --- includes/filerepo/ArchivedFile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filerepo/ArchivedFile.php b/includes/filerepo/ArchivedFile.php index 646256bbba..f6bbda306b 100644 --- a/includes/filerepo/ArchivedFile.php +++ b/includes/filerepo/ArchivedFile.php @@ -251,7 +251,7 @@ class ArchivedFile */ public function getTimestamp() { $this->load(); - return $this->timestamp; + return wfTimestamp( TS_MW, $this->timestamp ); } /** -- 2.20.1