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:
@@ -1057,7 +1057,7 @@
|
||||
}
|
||||
|
||||
function checkbox_to_sql_bool($val) {
|
||||
return ($val == "on") ? "true" : "false";
|
||||
return ($val == "on") ? true : false;
|
||||
}
|
||||
|
||||
function uniqid_short() {
|
||||
|
||||
Reference in New Issue
Block a user