summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r--Bugzilla/BugMail.pm5
1 files changed, 2 insertions, 3 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index 79033dbbe..acc12556d 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";
}