From 658dcb121e8f39cbe6b688f6020f2d8c75881acd Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 6 Oct 2015 10:49:36 +0000 Subject: [PATCH] * Calendar: use event title for mails generated via edit popup actions: mail all participants and meeting request --- calendar/inc/class.calendar_uiforms.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_uiforms.inc.php b/calendar/inc/class.calendar_uiforms.inc.php index 5de19f9b73..77561de5cc 100644 --- a/calendar/inc/class.calendar_uiforms.inc.php +++ b/calendar/inc/class.calendar_uiforms.inc.php @@ -1158,7 +1158,7 @@ class calendar_uiforms extends calendar_ui 'menuaction' => 'mail.mail_compose.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[subject]' => $event['title'], 'preset[body]' => $body, 'preset[name]' => 'event.ics', 'preset[file]' => $ics_file,