From 686b89edc4f05efdce9c11fd9fc3d89e992c301d Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 28 Feb 2007 22:40:47 +0000 Subject: [PATCH] =?utf8?q?Bug=20371808:=20'emailsuffix'=20is=20duplicated?= =?utf8?q?=20on=20email=20notification=20-=20Patch=20by=20Fr=C3=83=C2=A9d?= =?utf8?q?=C3=83=C2=A9ric=20Buclin=20=20r=3Dwicked=20a?= =?utf8?q?=3DLpSolit?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/BugMail.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 79033dbbe3..acc12556d1 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -705,10 +705,9 @@ sub prepare_comments { if ($count) { $result .= "\n\n--- Comment #$count from "; if ($comment->{'name'}) { - $result .= $comment->{'name'} . " <" . $comment->{'email'} . - Bugzilla->params->{'emailsuffix'} . ">"; + $result .= $comment->{'name'} . " <" . $comment->{'email'} . ">"; } else { - $result .= $comment->{'email'} . Bugzilla->params->{'emailsuffix'}; + $result .= $comment->{'email'}; } $result .= " " . format_time($comment->{'time'}) . " ---\n"; } -- 2.47.3