From: Michael M Slusarz Date: Sat, 22 Aug 2009 15:28:34 +0000 (-0600) Subject: Force this data to be MIME compliant X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a476852a0baf93d1b4637d9e7a6fcbcb5a523141;p=horde.git Force this data to be MIME compliant --- diff --git a/imp/lib/Mime/Viewer/Partial.php b/imp/lib/Mime/Viewer/Partial.php index bdd3fb0b5..6f0a2d215 100644 --- a/imp/lib/Mime/Viewer/Partial.php +++ b/imp/lib/Mime/Viewer/Partial.php @@ -76,7 +76,7 @@ class IMP_Horde_Mime_Viewer_Partial extends Horde_Mime_Viewer_Driver ksort($parts, SORT_NUMERIC); /* Combine the parts. */ - $mime_part = Horde_Mime_Part::parseMessage(implode('', $parts)); + $mime_part = Horde_Mime_Part::parseMessage(implode('', $parts), array('forcemime' => true)); return ($mime_part === false) ? null : array($this->_mimepart->getMimeId() => $mime_part);