diff options
author | reed%reedloden.com <> | 2007-01-11 00:21:00 +0000 |
---|---|---|
committer | reed%reedloden.com <> | 2007-01-11 00:21:00 +0000 |
commit | 1b5aec426907bcece47e654b4ef8162f3064861c (patch) | |
tree | 7fc29a90fa2006eed52df5fc33c854290113a9bf | |
parent | ed06de9de3117f8894872495e973ff812212ff91 (diff) | |
download | bugs-1b5aec426907bcece47e654b4ef8162f3064861c.tar bugs-1b5aec426907bcece47e654b4ef8162f3064861c.tar.gz bugs-1b5aec426907bcece47e654b4ef8162f3064861c.tar.bz2 bugs-1b5aec426907bcece47e654b4ef8162f3064861c.tar.xz bugs-1b5aec426907bcece47e654b4ef8162f3064861c.zip |
Bug 365443 - "Bugmail for new bugs without flags contains two unneeded lines" [p=reed r=LpSolit a=LpSolit]
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 9b70da03e..a4462b7ba 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -591,7 +591,7 @@ sub sendMail { my $diffs = $difftext . "\n\n" . $newcomments; if ($isnew) { - $diffs = $head . "\n\n" . $diffs; + $diffs = $head . ($difftext ? "\n\n" : "") . $diffs; } my (@reasons, @reasons_watch); |