diff options
| author | wn_ <invalid@email.com> | 2025-08-29 12:27:44 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2025-08-29 12:28:05 +0000 |
| commit | ecef0ae9512a3227221e107fe47dab91da6e5f4c (patch) | |
| tree | d0225325d81687fbaaf825f9184f133a09003f80 /classes/API.php | |
| parent | fd5ce90efed38d32d0874dc7b0258e3e0ec1f67e (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.php | 2 |
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, |