summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-02-09 01:14:07 +0100
committertravis%sedsystems.ca <>2005-02-09 01:14:07 +0100
commitd286752d0525b9bf8e6617b332aa8b3638212fc3 (patch)
tree8ffa84fcf7f4dcdb6ee21f7b5c2759c55260d6f9
parenta2b7d94d61be6af21994a99d23d15db9d776b78a (diff)
downloadbugzilla-d286752d0525b9bf8e6617b332aa8b3638212fc3.tar.gz
bugzilla-d286752d0525b9bf8e6617b332aa8b3638212fc3.tar.xz
Bug 280973 : BugMail includes the headers in the email body
Patch by Albert Ting <altlst@sonic.net> r=glob a=justdave
-rw-r--r--Bugzilla/BugMail.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm
index f81c1615d..258bc0ccb 100644
--- a/Bugzilla/BugMail.pm
+++ b/Bugzilla/BugMail.pm
@@ -904,7 +904,7 @@ sub MessageToMTA ($) {
my $headers = new Mail::Header \@header_lines, Modify => 0;
$mailer->open($headers->header_hashref);
- print $mailer $msg;
+ print $mailer $body;
$mailer->close;
}