summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
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;