From 550f780433e2f9a4d88d345ef64e7c52322e326f Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 4 Jun 2011 20:27:51 +0000 Subject: [PATCH] Fix for r89475: let's make this correctly --- includes/UserMailer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/UserMailer.php b/includes/UserMailer.php index 25297d1590..cabccac61d 100644 --- a/includes/UserMailer.php +++ b/includes/UserMailer.php @@ -661,8 +661,8 @@ class EmailNotification { '$PAGEEDITDATE', '$PAGEEDITTIME' ), array( wfMsgForContent( 'enotif_impersonal_salutation' ), - $wgContLang->timeanddate( $this->timestamp, true, false, false ), - $wgContLang->time( $this->timestamp, true, false, $timecorrection ) ), + $wgContLang->date( $this->timestamp, true, false, false ), + $wgContLang->time( $this->timestamp, true, false, false ) ), $this->body ); return UserMailer::send( $addresses, $this->from, $this->subject, $body, $this->replyto ); -- 2.20.1