]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 371808: 'emailsuffix' is duplicated on email notification - Patch by Frédéric...
authorlpsolit%gmail.com <>
Wed, 28 Feb 2007 22:40:47 +0000 (22:40 +0000)
committerlpsolit%gmail.com <>
Wed, 28 Feb 2007 22:40:47 +0000 (22:40 +0000)
Bugzilla/BugMail.pm

index 79033dbbe313675c5e62a5bc93d3b363d400181b..acc12556d1825fd78fd6b776c069ecb1788cf89d 100644 (file)
@@ -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";
         }