diff options
| author | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-12-01 14:48:23 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@madoka.volgo-balt.ru> | 2017-12-01 14:48:23 +0300 |
| commit | 4d13514dd4b1ce9fb7e2ce138cbfa50bb6292290 (patch) | |
| tree | c68ac0348349c802d78539a41d9947104d10e60f /include/functions.php | |
| parent | a21f7495aee551dca624648679245113fa14a0df (diff) | |
sessions: PDO
Diffstat (limited to 'include/functions.php')
| -rw-r--r-- | include/functions.php | 2 |
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; |