From: Alexandre Emsenhuber Date: Sat, 4 Jun 2011 20:27:51 +0000 (+0000) Subject: Fix for r89475: let's make this correctly X-Git-Tag: 1.31.0-rc.0~29716 X-Git-Url: http://git.cyclocoop.org/%27.%28%24current%20%3E%202?a=commitdiff_plain;h=550f780433e2f9a4d88d345ef64e7c52322e326f;p=lhc%2Fweb%2Fwiklou.git Fix for r89475: let's make this correctly --- 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 );