Remove deprecated defaults() call in mod/events

2022.09-rc
Hypolite Petovan 2019-09-06 08:33:41 -04:00
rodzic 69105928f5
commit c2c3bb2074
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -321,7 +321,7 @@ function events_content(App $a)
// put the event parametes in an array so we can better transmit them
$event_params = [
'event_id' => intval(defaults($_GET, 'id', 0)),
'event_id' => intval($_GET['id'] ?? 0),
'start' => $start,
'finish' => $finish,
'adjust_start' => $adjust_start,