From c2c3bb207414defb35e38fccc180a1d730e9d5cf Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Fri, 6 Sep 2019 08:33:41 -0400 Subject: [PATCH] Remove deprecated defaults() call in mod/events --- mod/events.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/events.php b/mod/events.php index 86cec9a7d4..82257a8481 100644 --- a/mod/events.php +++ b/mod/events.php @@ -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,