mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
* Calendar - merge placeholder {{participant_emails}} now includes group members for group invitations
This commit is contained in:
parent
e8127f7da7
commit
a75272b1bc
@ -312,7 +312,11 @@ class calendar_merge extends Api\Storage\Merge
|
||||
}
|
||||
|
||||
$emails = array();
|
||||
foreach($record->participants as $uid => $status)
|
||||
$event = array(
|
||||
'participants' => $record->participants
|
||||
);
|
||||
$this->bo->enum_groups($event);
|
||||
foreach($event['participants'] as $uid => $status)
|
||||
{
|
||||
// Skip rejected
|
||||
if (in_array(substr($status, 0, 1), array('R')))
|
||||
|
Loading…
Reference in New Issue
Block a user