From b2578d9de5174e0cbcfae7a8a633748916340d64 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 9 Dec 2010 12:43:52 +0000 Subject: [PATCH] * Calendar, MailToAllParticipants: force type to plain as thunderbird (with lightning attached) seems to try to be smart while parsing html messages with ics attachments, but fails with a parse error, resulting in a not displayed message in thunderbird --- calendar/inc/class.calendar_uiforms.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index ec7b1b35f7..20d239c9b6 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -1002,6 +1002,7 @@ class calendar_uiforms extends calendar_ui } $vars = array( 'menuaction' => 'felamimail.uicompose.compose', + 'mimeType' => 'plain', // force type to plain as thunderbird seems to try to be smart while parsing html messages with ics attachments 'preset[to]' => $to, 'preset[subject]' => $subject, 'preset[body]' => $body,