From 93a72e98201706aabd10c329c2758ed3d5154247 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Fri, 12 Dec 2008 12:18:13 -0700 Subject: [PATCH] Was missing brackets around Content-ID. --- framework/Mime/lib/Horde/Mime/Part.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0