summaryrefslogtreecommitdiff
path: root/classes/API.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2025-08-29 12:27:44 +0000
committerwn_ <invalid@email.com>2025-08-29 12:28:05 +0000
commitecef0ae9512a3227221e107fe47dab91da6e5f4c (patch)
treed0225325d81687fbaaf825f9184f133a09003f80 /classes/API.php
parentfd5ce90efed38d32d0874dc7b0258e3e0ec1f67e (diff)
Tweak the 'Feeds::_get_title()' param order to make PHP happy.
Required params need to go before optional.
Diffstat (limited to 'classes/API.php')
-rw-r--r--classes/API.php2
1 files changed, 1 insertions, 1 deletions
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,