]> git.wh0rd.org - tt-rss.git/blobdiff - plugins/af_readability/init.php
plugins/af_readability: use PDO
[tt-rss.git] / plugins / af_readability / init.php
index 873eba1bae90c16c818412834966b38763033f60..10de118f9bbd31522410007345c26ff07285b42c 100755 (executable)
@@ -1,6 +1,7 @@
 <?php
 class Af_Readability extends Plugin {
 
+       /* @var PluginHost $host */
        private $host;
 
        function about() {
@@ -235,9 +236,10 @@ class Af_Readability extends Plugin {
 
                foreach ($enabled_feeds as $feed) {
 
-                       $result = db_query("SELECT id FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
+                       $sth = $this->pdo->prepare("SELECT id FROM ttrss_feeds WHERE id = ? AND owner_uid = ?");
+                       $sth->execute([$feed, $_SESSION['uid']]);
 
-                       if (db_num_rows($result) != 0) {
+                       if ($row = $sth->fetch()) {
                                array_push($tmp, $feed);
                        }
                }