From: lpsolit%gmail.com <> Date: Thu, 28 Dec 2006 08:39:30 +0000 (+0000) Subject: Bug 365067: Flags set from the enter_bug page are not mentioned in email - Patch... X-Git-Tag: bugzilla-2.23.4~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7205db47e4fb792e7478b4587f8e86b7471a99bf;p=thirdparty%2Fbugzilla.git Bug 365067: Flags set from the enter_bug page are not mentioned in email - Patch by Frédéric Buclin r/a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index d6404f2ebd..ca7e20b1e4 100644 --- a/Bugzilla/BugMail.pm +++ b/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);