From 65b3926ae565374f449bf96b0a5e2bd4143cc597 Mon Sep 17 00:00:00 2001 From: JustAMacUser Date: Sun, 11 Oct 2020 01:31:30 -0400 Subject: [PATCH] Ensure proxy_all setting is saved in database. --- plugins/af_proxy_http/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }