summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2009-08-19 06:44:52 +0200
committermkanat%bugzilla.org <>2009-08-19 06:44:52 +0200
commitc9806c3558e6a37c748488520d0c83e471809104 (patch)
tree3420909409dc0314802b907bf2fcc78f54927295 /Bugzilla
parent92f86cba3806a13936dc5dc3d341194bd60f4af6 (diff)
downloadbugzilla-c9806c3558e6a37c748488520d0c83e471809104.tar.gz
bugzilla-c9806c3558e6a37c748488520d0c83e471809104.tar.xz
Bug 73330: Remove extra newlines in bugmail
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/BugMail.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index 9a1b2a8a2..ec4bf30da 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -352,7 +352,7 @@ sub Send {
if ($deptext) {
my $diffpart = {};
- $diffpart->{'text'} = "\n" . trim("\n\n" . $deptext);
+ $diffpart->{'text'} = "\n" . trim($deptext);
push(@diffparts, $diffpart);
}
}
@@ -595,6 +595,8 @@ sub sendMail {
}
my $diffs = $difftext;
+ # Remove extra newlines.
+ $diffs =~ s/^\n+//s; $diffs =~ s/\n+$//s;
if ($isnew) {
my $head = "";
foreach my $f (@headerlist) {