From 48d63d2f77b8082b2954dd0b78f5b402090451e6 Mon Sep 17 00:00:00 2001 From: Danny B Date: Wed, 17 Dec 2008 01:18:47 +0000 Subject: [PATCH] * footer separator fix per http://tools.ietf.org/html/rfc3676#section-4.3 --- includes/specials/SpecialEmailuser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ) ) { -- 2.20.1