From: Michael J. Rubinsky Date: Tue, 13 Apr 2010 23:21:44 +0000 (-0400) Subject: These are only supported in AS 14 or greater. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5d4c65c8fe2e09fa1e8e6d4f17cca8c4437cee61;p=horde.git These are only supported in AS 14 or greater. --- diff --git a/kronolith/lib/Event.php b/kronolith/lib/Event.php index 736f1a8b7..cd46241d0 100644 --- a/kronolith/lib/Event.php +++ b/kronolith/lib/Event.php @@ -1079,11 +1079,8 @@ abstract class Kronolith_Event /* Attendees */ $attendees = $message->getAttendees(); foreach ($attendees as $attendee) { - //if ($attendee->type == Horde_ActiveSync_Message_Attendee::TYPE_RESOURCE) { - // @TODO figure out a way to map this to an existing resource?? - //} else { - $this->addAttendee($attendee->email, $attendee->type, $attendee->status, $attendee->name); - //} + // TODO: participation and response are not supported in AS <= 2.5 + $this->addAttendee($attendee->email, Kronolith::PART_NONE, Kronolith::RESPONSE_NONE, $attendee->name); } /* Flag that we are initialized */