mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-27 11:41:28 +00:00
checkbox to sql bool related changes, some more boolean fixes
This commit is contained in:
@@ -241,8 +241,8 @@ class Af_Zz_ImgProxy extends Plugin {
|
||||
}
|
||||
|
||||
function save() {
|
||||
$proxy_all = checkbox_to_sql_bool($_POST["proxy_all"]) == "true";
|
||||
$disable_cache = checkbox_to_sql_bool($_POST["disable_cache"]) == "true";
|
||||
$proxy_all = checkbox_to_sql_bool($_POST["proxy_all"]);
|
||||
$disable_cache = checkbox_to_sql_bool($_POST["disable_cache"]);
|
||||
|
||||
$this->host->set($this, "proxy_all", $proxy_all, false);
|
||||
$this->host->set($this, "disable_cache", $disable_cache);
|
||||
|
||||
Reference in New Issue
Block a user