just remove parenthess

This commit is contained in:
Philipp Holzer 2019-10-26 05:24:05 +02:00
parent 28d5f39330
commit 5d995b854a
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90

View file

@ -78,7 +78,7 @@ function notifications_content(App $a)
} }
$page = ($_REQUEST['page'] ?? 0) ?: 1; $page = ($_REQUEST['page'] ?? 0) ?: 1;
$show = isset($_REQUEST['show']) ? $_REQUEST['show'] : false; $show = ($_REQUEST['show'] ?? '') === 'all';
Nav::setSelected('notifications'); Nav::setSelected('notifications');