From 4d13514dd4b1ce9fb7e2ce138cbfa50bb6292290 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 1 Dec 2017 14:48:23 +0300 Subject: sessions: PDO --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index e366a4965..07f4f0f64 100644 --- a/include/functions.php +++ b/include/functions.php @@ -229,7 +229,7 @@ $pdo = Db::pdo(); $sth = $pdo->prepare("SELECT owner_uid FROM ttrss_feeds WHERE id = ?"); - $sth->execute($feed_id); + $sth->execute([$feed_id]); $owner_uid = false; -- cgit v1.2.3-54-g00ecf