From 20fa3f9df949a89d6e8e73d8e8dfe983e1cb6521 Mon Sep 17 00:00:00 2001 From: Daniel Spitzer Date: Mon, 18 Nov 2024 15:28:46 +0100 Subject: [PATCH] =?UTF-8?q?Kalender=20Update:=20*=20Termine=20Teilnehmer?= =?UTF-8?q?=20k=C3=B6nnen=20nun=20beliebig=20hinzugef=C3=BCgt=20und=20entf?= =?UTF-8?q?ernt=20werden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/Calendar/CalendarModel.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/application/Calendar/CalendarModel.php b/application/Calendar/CalendarModel.php index fe6979d32..e6f3bd644 100644 --- a/application/Calendar/CalendarModel.php +++ b/application/Calendar/CalendarModel.php @@ -478,6 +478,7 @@ class CalendarModel $type = ($r->type); $busy = ($r->busy); $users = ($r->users); + $attendees = ($r->attendees); foreach ($users as $key => $value) { $user_id = $value; } @@ -587,6 +588,8 @@ class CalendarModel $updateArray['attachments'] = $attachments; } + if ($attendees) + $updateArray['attendees'] = $attendees; $json_data = json_encode($updateArray); $data = []; $data['ms_user_id'] = $microsoft_user_id;