boolean handling changes which probably won't break everything
This commit is contained in:
parent
248c62a1cc
commit
7ccb4e91ff
|
@ -364,6 +364,8 @@ class Opml extends Handler_Protected {
|
|||
$inverse = bool_to_sql_bool($filter["inverse"]);
|
||||
$title = $filter["title"];
|
||||
|
||||
print "F: $title, $inverse, $enabled, $match_any_rule";
|
||||
|
||||
$sth = $this->pdo->prepare("INSERT INTO ttrss_filters2 (match_any_rule,enabled,inverse,title,owner_uid)
|
||||
VALUES (?, ?, ?, ?, ?)");
|
||||
|
||||
|
|
|
@ -941,19 +941,11 @@
|
|||
}
|
||||
|
||||
function sql_bool_to_bool($s) {
|
||||
if ($s == "t" || $s == "1" || strtolower($s) == "true") {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return $s; //no-op for PDO
|
||||
}
|
||||
|
||||
function bool_to_sql_bool($s) {
|
||||
if ($s) {
|
||||
return "true";
|
||||
} else {
|
||||
return "false";
|
||||
}
|
||||
return (bool)$s; //no-op for PDO
|
||||
}
|
||||
|
||||
// Session caching removed due to causing wrong redirects to upgrade
|
||||
|
|
Loading…
Reference in New Issue