From ecef0ae9512a3227221e107fe47dab91da6e5f4c Mon Sep 17 00:00:00 2001 From: wn_ Date: Fri, 29 Aug 2025 12:27:44 +0000 Subject: Tweak the 'Feeds::_get_title()' param order to make PHP happy. Required params need to go before optional. --- classes/API.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes/API.php') diff --git a/classes/API.php b/classes/API.php index 6255bf81f..4b49e4b37 100644 --- a/classes/API.php +++ b/classes/API.php @@ -574,7 +574,7 @@ class API extends Handler { $unread = Feeds::_get_counters($i, false, true); if ($unread || !$unread_only) { - $title = Feeds::_get_title($i, false, $_SESSION['uid']); + $title = Feeds::_get_title($i, $_SESSION['uid']); $row = [ 'id' => $i, -- cgit v1.2.3-54-g00ecf