summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-07 18:02:42 +0300
committerAndrew Dolgov <[email protected]>2018-12-07 18:03:06 +0300
commit495abe9702275d02f3d95db2cce5e903c2875c5b (patch)
tree9e845c66b614b56aeda3de1efcf284ddfe304598
parenta68b15060195b42eea36f29d2837bb920e35f07a (diff)
af_psql_trgm: fix parameter not being quoted properly in showrelated
-rw-r--r--plugins/af_psql_trgm/init.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/af_psql_trgm/init.php b/plugins/af_psql_trgm/init.php
index de0494dbf..cd12c6be0 100644
--- a/plugins/af_psql_trgm/init.php
+++ b/plugins/af_psql_trgm/init.php
@@ -63,7 +63,7 @@ class Af_Psql_Trgm extends Plugin {
ttrss_entries.title AS title,
updated, link,
ttrss_feeds.title AS feed_title,
- SIMILARITY(ttrss_entries.title, '$title') AS sm
+ SIMILARITY(ttrss_entries.title, ?) AS sm
FROM
ttrss_entries, ttrss_user_entries LEFT JOIN ttrss_feeds ON (ttrss_feeds.id = feed_id)
WHERE
@@ -75,7 +75,7 @@ class Af_Psql_Trgm extends Plugin {
sm DESC, date_entered DESC
LIMIT 10");
- $sth->execute([$owner_uid, $id]);
+ $sth->execute([$title, $owner_uid, $id]);
print "<ul class='panel panel-scrollable'>";