* calendar/esync: active-sync does NOT want calendar owner as participant

This commit is contained in:
Klaus Leithoff 2011-12-06 13:59:47 +00:00
parent e4c4ce3d45
commit 1759838b91

View File

@ -1030,8 +1030,7 @@ return array(); // temporary disabling meeting requests from calendar
foreach($event['participants'] as $uid => $status) foreach($event['participants'] as $uid => $status)
{ {
// AS does NOT want calendar owner as participant // AS does NOT want calendar owner as participant
// disabled, as otherwise status is NOT transfered to client if ($uid == $account) continue;
// if ($uid == $account) continue;
calendar_so::split_status($status, $quantity, $role); calendar_so::split_status($status, $quantity, $role);
$attendee = new SyncAttendee(); $attendee = new SyncAttendee();
$attendee->attendeestatus = (int)self::$status2as[$status]; $attendee->attendeestatus = (int)self::$status2as[$status];