From: Danny B Date: Wed, 17 Dec 2008 01:18:47 +0000 (+0000) Subject: * footer separator fix per http://tools.ietf.org/html/rfc3676#section-4.3 X-Git-Tag: 1.31.0-rc.0~43921 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=48d63d2f77b8082b2954dd0b78f5b402090451e6;p=lhc%2Fweb%2Fwiklou.git * footer separator fix per tools.ietf.org/html/rfc3676#section-4.3 --- diff --git a/includes/specials/SpecialEmailuser.php b/includes/specials/SpecialEmailuser.php index 9dd491f569..1556820e7f 100644 --- a/includes/specials/SpecialEmailuser.php +++ b/includes/specials/SpecialEmailuser.php @@ -171,7 +171,7 @@ class EmailUserForm { $subject = $this->subject; // Add a standard footer and trim up trailing newlines - $this->text = rtrim($this->text) . "\n\n---\n" . wfMsgExt( 'emailuserfooter', + $this->text = rtrim($this->text) . "\n\n-- \n" . wfMsgExt( 'emailuserfooter', array( 'content', 'parsemag' ), array( $from->name, $to->name ) ); if( wfRunHooks( 'EmailUser', array( &$to, &$from, &$subject, &$this->text ) ) ) {