diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2024-03-26 08:49:47 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2024-03-26 08:49:47 +0000 |
| commit | 77ccfdd470eee5260c68eda17fa1a5199659acf9 (patch) | |
| tree | 4c1bb2f1f51f9f6fa8f57cfa3f198f0bf4951fcc /app/controllers/calendar/calendar.php | |
| parent | 5705e8df927c3d2044fa0ddbf18859a23c0add80 (diff) | |
always show an all-day slot, fixes #3889
Closes #3889
Merge request studip/studip!2755
Diffstat (limited to 'app/controllers/calendar/calendar.php')
| -rw-r--r-- | app/controllers/calendar/calendar.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/calendar/calendar.php b/app/controllers/calendar/calendar.php index 609a0b6..c605c01 100644 --- a/app/controllers/calendar/calendar.php +++ b/app/controllers/calendar/calendar.php @@ -341,7 +341,7 @@ class Calendar_CalendarController extends AuthenticatedController 'minTime' => sprintf('%02u:00', $calendar_settings['start'] ?? 8), 'maxTime' => sprintf('%02u:00', $calendar_settings['end'] ?? 20), 'defaultDate' => $default_date->format('Y-m-d'), - 'allDaySlot' => !$group_view, + 'allDaySlot' => true, 'allDayText' => '', 'header' => [ 'left' => ( |
