summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-01 14:48:23 +0300
committerAndrew Dolgov <[email protected]>2017-12-01 14:48:23 +0300
commit4d13514dd4b1ce9fb7e2ce138cbfa50bb6292290 (patch)
treec68ac0348349c802d78539a41d9947104d10e60f /include/functions.php
parenta21f7495aee551dca624648679245113fa14a0df (diff)
sessions: PDO
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php2
1 files changed, 1 insertions, 1 deletions
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;