mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 09:53:20 +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',
|
||||
'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':
|
||||
$body .= "\n\n".lang('Event Details follow').":\n";
|
||||
foreach($event_arr as $key => $val)
|
||||
|
Loading…
Reference in New Issue
Block a user