From 6bc10967004e3394c2833c3f08425b458e76a309 Mon Sep 17 00:00:00 2001 From: Daniel Spitzer Date: Wed, 22 Oct 2025 13:13:59 +0200 Subject: [PATCH] =?UTF-8?q?Kalender=20Update=20*=20=C3=9Cbergang=20Sommerz?= =?UTF-8?q?eit=20Winterzeit=20Bugfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/Calendar/CalendarModel.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/application/Calendar/CalendarModel.php b/application/Calendar/CalendarModel.php index d68c9ecbf..d3fe6f931 100644 --- a/application/Calendar/CalendarModel.php +++ b/application/Calendar/CalendarModel.php @@ -659,17 +659,18 @@ WHERE `TimerecordingCategory`.`hourday`!='1' AND `TimerecordingCategory`.`hourda public static function updateCalendarEvent($r, $me) { + $description = ($r->description); + $attachments = ($r->attachments); + $location = ($r->location); + $title = ($r->title); + $start = CalendarModel::convertMillisecondsToTimestamp($r->start); $end = CalendarModel::convertMillisecondsToTimestamp($r->end); - - if ($title) { $start = strtotime($r->start); $end = strtotime($r->end); } - $originalend = $end; - $allday = ($r->allday); if ($allday) { $start = $start + 7200;