From 61e47236454e523b3c946193c78a90a3660552f8 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Thu, 28 Dec 2006 00:39:30 +0000 Subject: [PATCH] =?UTF-8?q?Bug=20365067:=20Flags=20set=20from=20the=20ente?= =?UTF-8?q?r=5Fbug=20page=20are=20not=20mentioned=20in=20email=20-=20Patch?= =?UTF-8?q?=20by=20Fr=EF=BF=BD=EF=BF=BDd=EF=BF=BD=EF=BF=BDric=20Buclin=20=20r/a=3Djustdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- webtools/bugzilla/Bugzilla/BugMail.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/webtools/bugzilla/Bugzilla/BugMail.pm b/webtools/bugzilla/Bugzilla/BugMail.pm index d6404f2ebd9..ca7e20b1e48 100644 --- a/webtools/bugzilla/Bugzilla/BugMail.pm +++ b/webtools/bugzilla/Bugzilla/BugMail.pm @@ -590,11 +590,9 @@ sub sendMail { $newcomments =~ s/(Created an attachment \(id=([0-9]+)\))/$1\n --> \(${showattachurlbase}$2\)/g; } - my $diffs; + my $diffs = $difftext . "\n\n" . $newcomments; if ($isnew) { - $diffs = $head . "\n\n" . $newcomments; - } else { - $diffs = $difftext . "\n\n" . $newcomments; + $diffs = $head . "\n\n" . $diffs; } my (@reasons, @reasons_watch);