diff options
| author | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2020-10-11 01:31:30 -0400 |
|---|---|---|
| committer | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2020-10-11 01:31:30 -0400 |
| commit | 65b3926ae565374f449bf96b0a5e2bd4143cc597 (patch) | |
| tree | 62e0448d20fb7f210214330ec5d277a9ef890a74 | |
| parent | e3a522cdc1e7259ec2b573ba2cff3879c25b1128 (diff) | |
Ensure proxy_all setting is saved in database.
| -rw-r--r-- | plugins/af_proxy_http/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/af_proxy_http/init.php b/plugins/af_proxy_http/init.php index 2d9ae59b5..86f5fc8ce 100644 --- a/plugins/af_proxy_http/init.php +++ b/plugins/af_proxy_http/init.php @@ -239,7 +239,7 @@ class Af_Proxy_Http extends Plugin { function save() { $proxy_all = checkbox_to_sql_bool($_POST["proxy_all"]); - $this->host->set($this, "proxy_all", $proxy_all, false); + $this->host->set($this, "proxy_all", $proxy_all); echo __("Configuration saved"); } |