Pop Übersichtsmap update

* Gesamtanzahl wird nun angezeigt mit und ohne Koordinaten
This commit is contained in:
Daniel Spitzer
2026-01-14 08:56:31 +01:00
parent 56143afe44
commit d867bb5604

View File

@@ -265,9 +265,10 @@ class CalendarModel
continue; continue;
} }
if ($data['all_day_event'] == 1) { if ($data['all_day_event'] == 1) {
if (in_array("Feiertag", $categories)) { if (is_array($categories) && in_array("Feiertag", $categories)) {
continue; continue;
} }
$starttime = date("Y-m-d", $data['start_time']); $starttime = date("Y-m-d", $data['start_time']);
$endtime = date("Y-m-d", $data['end_time']); $endtime = date("Y-m-d", $data['end_time']);
} else { } else {