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 /plugins | |
| parent | fd5ce90efed38d32d0874dc7b0258e3e0ec1f67e (diff) | |
Tweak the 'Feeds::_get_title()' param order to make PHP happy.
Required params need to go before optional.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/af_psql_trgm/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/af_psql_trgm/init.php b/plugins/af_psql_trgm/init.php index 87c4d16e8..591cd7ea1 100644 --- a/plugins/af_psql_trgm/init.php +++ b/plugins/af_psql_trgm/init.php @@ -210,7 +210,7 @@ class Af_Psql_Trgm extends Plugin { <li> <i class='material-icons'>rss_feed</i> <a href='#' onclick="CommonDialogs.editFeed(<?= $f ?>)"> - <?= Feeds::_get_title($f, false, $_SESSION['uid']) ?> + <?= Feeds::_get_title($f, $_SESSION['uid']) ?> </a> </li> <?php } ?> |