From 3e3dbc2d84b924fac28bf9357805ab34a52af095 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 9 Jan 2005 03:00:21 +0000 Subject: [PATCH] Use user's timezone in log display. --- includes/SpecialLog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialLog.php b/includes/SpecialLog.php index 5eb8711c5d..1e0a1933cf 100644 --- a/includes/SpecialLog.php +++ b/includes/SpecialLog.php @@ -249,7 +249,7 @@ class LogViewer { global $wgLang; $title = Title::makeTitle( $s->log_namespace, $s->log_title ); $user = Title::makeTitleSafe( NS_USER, $s->user_name ); - $time = $wgLang->timeanddate( $s->log_timestamp ); + $time = $wgLang->timeanddate( $s->log_timestamp, true ); if( $s->page_id ) { $titleLink = $this->skin->makeKnownLinkObj( $title ); } else { -- 2.20.1