mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 11:21:23 +01:00
* Calendar: notifications of type iCal use event-title as subject and describtion as body, like Exchange does, type extended provides old format
This commit is contained in:
parent
97cb3a0586
commit
fc7dfc1ab6
@ -860,7 +860,11 @@ class calendar_boupdate extends calendar_bo
|
|||||||
'encoding' => '8bit',
|
'encoding' => '8bit',
|
||||||
'type' => 'text/calendar; method='.$method,
|
'type' => 'text/calendar; method='.$method,
|
||||||
);
|
);
|
||||||
// fall through
|
// format iCal uses now like Exchange event-title as subject and description as body
|
||||||
|
$subject = $event['title'];
|
||||||
|
$body = $event['description'];
|
||||||
|
break;
|
||||||
|
|
||||||
case 'extended':
|
case 'extended':
|
||||||
$body .= "\n\n".lang('Event Details follow').":\n";
|
$body .= "\n\n".lang('Event Details follow').":\n";
|
||||||
foreach($event_arr as $key => $val)
|
foreach($event_arr as $key => $val)
|
||||||
|
Loading…
Reference in New Issue
Block a user