Fix sending itips as multipart/alternative
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 19 Apr 2010 20:46:28 +0000 (16:46 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 19 Apr 2010 20:47:06 +0000 (16:47 -0400)
kronolith/lib/Kronolith.php

index f7803c0..bfbef64 100644 (file)
@@ -2111,7 +2111,8 @@ class Kronolith
             $ics->setContentTypeParameter('METHOD', $method);
             $ics->setCharset(Horde_Nls::getCharset());
 
-            $multipart = new Horde_Mime_Part('multipart/alternative');
+            $multipart = new Horde_Mime_Part();
+            $multipart->setType('multipart/alternative');
             $body = new Horde_Mime_Part();
             $body->setType('text/plain');
             $body->setCharset(Horde_Nls::getCharset());