diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
| commit | 283ad4ebea9e93a97848000f38ca91b23ce883ff (patch) | |
| tree | 0b9ea618b438156b3803df115afec5e34d30e3a8 /plugins/af_psql_trgm/init.php | |
| parent | d334023267848accb339c8ec3186be2afde3b514 (diff) | |
| parent | 8727fb3ba8a28da48c71bdd39166b9aeb3c3d986 (diff) | |
Merge branch 'feature/unused-var-cleanup' into 'master'
Clean up some unused variables.
See merge request tt-rss/tt-rss!19
Diffstat (limited to 'plugins/af_psql_trgm/init.php')
| -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 4767e071b..28a0ab933 100644 --- a/plugins/af_psql_trgm/init.php +++ b/plugins/af_psql_trgm/init.php @@ -385,7 +385,7 @@ class Af_Psql_Trgm extends Plugin { $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE id = ? AND owner_uid = ?"); $sth->execute([$feed, $_SESSION['uid']]); - if ($row = $sth->fetch()) { + if ($sth->fetch()) { array_push($tmp, $feed); } } |