From d867bb5604fc7fab99f2412c91eaae4416f3a71f Mon Sep 17 00:00:00 2001 From: Daniel Spitzer Date: Wed, 14 Jan 2026 08:56:31 +0100 Subject: [PATCH] =?UTF-8?q?Pop=20=C3=9Cbersichtsmap=20update=20*=20Gesamta?= =?UTF-8?q?nzahl=20wird=20nun=20angezeigt=20mit=20und=20ohne=20Koordinaten?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/Calendar/CalendarModel.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/Calendar/CalendarModel.php b/application/Calendar/CalendarModel.php index d3fe6f931..d74abce7f 100644 --- a/application/Calendar/CalendarModel.php +++ b/application/Calendar/CalendarModel.php @@ -265,9 +265,10 @@ class CalendarModel continue; } if ($data['all_day_event'] == 1) { - if (in_array("Feiertag", $categories)) { + if (is_array($categories) && in_array("Feiertag", $categories)) { continue; } + $starttime = date("Y-m-d", $data['start_time']); $endtime = date("Y-m-d", $data['end_time']); } else {