Was missing brackets around Content-ID.
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Dec 2008 19:18:13 +0000 (12:18 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 12 Dec 2008 19:18:31 +0000 (12:18 -0700)
framework/Mime/lib/Horde/Mime/Part.php

index a9f5f99..38aa7f5 100644 (file)
@@ -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;