Skip to content
Snippets Groups Projects
Commit 704885fa authored by David Siegfried's avatar David Siegfried
Browse files

prevent php8-warnings, closes #3169

Closes #3169

Merge request studip/studip!2146
parent be6111f3
No related branches found
No related tags found
No related merge requests found
......@@ -46,10 +46,10 @@
_('Belegungsplan'),
[
'editable' => true,
'selectable' => ($fullcalendar_studip_urls['add'] != null),
'selectable' => !empty($fullcalendar_studip_urls['add']),
'studip_urls' => $fullcalendar_studip_urls,
'minTime' => ($min_time),
'maxTime' => ($max_time),
'minTime' => $min_time,
'maxTime' => $max_time,
'allDaySlot' => false,
'header' => [
'left' => 'dayGridMonth,timeGridWeek,timeGridDay',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment