1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 18:35:57 +00:00

filters: remove sql_bool_to_bool()

checkbox_to_sql_bool: return ints (???)
This commit is contained in:
Andrew Dolgov
2017-12-03 09:26:11 +03:00
parent b431d52520
commit 8ff3cbb32e
2 changed files with 13 additions and 15 deletions

View File

@@ -1053,7 +1053,7 @@
}
function checkbox_to_sql_bool($val) {
return ($val == "on") ? true : false;
return ($val == "on") ? 1 : 0;
}
function uniqid_short() {