From a61c67c1982d172819a6e7687291433e3d8dd796 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 28 Feb 2007 22:42:22 +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 fa52464f83..8b6f7678bb 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'} eq $comment->{'email'}) { - $result .= $comment->{'email'} . Bugzilla->params->{'emailsuffix'}; + $result .= $comment->{'email'}; } else { - $result .= $comment->{'name'} . " <" . $comment->{'email'} . - Bugzilla->params->{'emailsuffix'} . ">"; + $result .= $comment->{'name'} . " <" . $comment->{'email'} . ">"; } $result .= " " . format_time($comment->{'time'}) . " ---\n"; } -- 2.47.2