From: Michael M Slusarz Date: Fri, 12 Dec 2008 19:18:13 +0000 (-0700) Subject: Was missing brackets around Content-ID. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=93a72e98201706aabd10c329c2758ed3d5154247;p=horde.git Was missing brackets around Content-ID. --- diff --git a/framework/Mime/lib/Horde/Mime/Part.php b/framework/Mime/lib/Horde/Mime/Part.php index a9f5f9999..38aa7f5fc 100644 --- a/framework/Mime/lib/Horde/Mime/Part.php +++ b/framework/Mime/lib/Horde/Mime/Part.php @@ -775,7 +775,7 @@ class Horde_Mime_Part /* Add content ID information. */ if (!is_null($this->_contentid)) { - $headers->replaceHeader('Content-ID', $this->_contentid); + $headers->replaceHeader('Content-ID', '<' . $this->_contentid . '>'); } return $headers;