From: Michael M Slusarz Date: Mon, 24 Nov 2008 21:37:06 +0000 (-0700) Subject: Don't include MIME headers twice in base part. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ffc083ce434663e58c5ef2c8d1cd6314aec8fc7d;p=horde.git Don't include MIME headers twice in base part. --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index 4606163d9..b5abffff2 100644 --- a/framework/Mime/lib/Horde/Mime/Part.php +++ b/framework/Mime/lib/Horde/Mime/Part.php @@ -1400,7 +1400,7 @@ class Horde_Mime_Part } /* Make sure the message has a trailing newline. */ - $msg = $this->toString(); + $msg = $this->toString(false); if (substr($msg, -1) != "\n") { $msg .= "\n"; }