From: travis%sedsystems.ca <> Date: Wed, 9 Feb 2005 00:14:07 +0000 (+0000) Subject: Bug 280973 : BugMail includes the headers in the email body X-Git-Tag: bugzilla-2.19.3~331 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d286752d0525b9bf8e6617b332aa8b3638212fc3;p=thirdparty%2Fbugzilla.git Bug 280973 : BugMail includes the headers in the email body Patch by Albert Ting r=glob a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index f81c1615d2..258bc0ccbe 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; }