Skip to content
Snippets Groups Projects
Commit 89d5a23c authored by Moritz Strohm's avatar Moritz Strohm
Browse files

fixed PHP8 warnings in app/views/resources/room_request/planning, fixes #1753

parent ed5d48c3
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@
[
'editable' => true,
'selectable' => isset($fullcalendar_studip_urls['add']),
'studip_urls' => $fullcalendar_studip_urls,
'studip_urls' => $fullcalendar_studip_urls ?? [],
'minTime' => ($min_time),
'maxTime' => ($max_time),
'allDaySlot' => false,
......@@ -93,7 +93,7 @@
'semester_id' => $semester->id,
'semester_timerange' => Request::get("semester_timerange", 'vorles'),
'display_requests' => 0,
'display_all_requests' => $display_all_requests ? 1 : 0
'display_all_requests' => !empty($display_all_requests) ? 1 : 0
]
]
],
......
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