summaryrefslogtreecommitdiff
path: root/include/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-12-03 00:18:08 +0300
committerAndrew Dolgov <[email protected]>2017-12-03 00:18:08 +0300
commit7d960ce7e9af250648315b3d8e1574ebdb184a2e (patch)
treeb050649df80c60b922ab174279b62e48da04c2ec /include/functions.php
parent4ee398a41e2176d4a5c997920db35cb6bed12f2e (diff)
auth_internal: use PDO + other fixes
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 1d7033c89..f88321ec9 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -2062,7 +2062,7 @@
(access_key, feed_id, is_cat, owner_uid)
VALUES (?, ?, ?, ?)");
- $sth->execute([$key, $feed_id, $is_cat, $owner_uid]);
+ $sth->execute([$key, $feed_id, (int)$is_cat, $owner_uid]);
return $key;
}