From 026564772ad6fcd98a5e99f938e92921cd43bc84 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 24 Nov 2008 22:46:41 -0700 Subject: [PATCH] Fix constructor call. --- imp/lib/Compose.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index d85988119..1bb8a8d61 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -994,7 +994,8 @@ class IMP_Compose } } } elseif ($this->_pgpAttachPubkey || $this->_attachVCard) { - $base = new Horde_Mime_Part('multipart/mixed'); + $base = new Horde_Mime_Part(); + $base->setType('multipart/mixed'); $base->addPart($textpart); } else { $base = $textpart; -- 2.11.0