From 5d995b854a77e7d8a3279e09d6d158db7eb9644d Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sat, 26 Oct 2019 05:24:05 +0200 Subject: [PATCH] just remove parenthess --- mod/notifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/notifications.php b/mod/notifications.php index a215f9d7a6..88972728cb 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -78,7 +78,7 @@ function notifications_content(App $a) } $page = ($_REQUEST['page'] ?? 0) ?: 1; - $show = isset($_REQUEST['show']) ? $_REQUEST['show'] : false; + $show = ($_REQUEST['show'] ?? '') === 'all'; Nav::setSelected('notifications');