mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 08:35:55 +00:00
Switch from null to false as the default for missing bool params.
This commit is contained in:
@@ -456,7 +456,7 @@ class Feeds extends Handler_Protected {
|
||||
$method = $_REQUEST["m"] ?? "";
|
||||
$view_mode = $_REQUEST["view_mode"] ?? "";
|
||||
$limit = 30;
|
||||
$cat_view = self::_param_to_bool($_REQUEST["cat"] ?? null);
|
||||
$cat_view = self::_param_to_bool($_REQUEST["cat"] ?? false);
|
||||
$next_unread_feed = $_REQUEST["nuf"] ?? 0;
|
||||
$offset = (int) ($_REQUEST["skip"] ?? 0);
|
||||
$order_by = $_REQUEST["order_by"] ?? "";
|
||||
|
||||
Reference in New Issue
Block a user