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

checkbox to sql bool related changes, some more boolean fixes

This commit is contained in:
Andrew Dolgov
2017-12-02 14:07:48 +03:00
parent 7ccb4e91ff
commit da9ea57d1c
6 changed files with 10 additions and 10 deletions

View File

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