From eb441444856db5939324437d0b609880ac11e43e Mon Sep 17 00:00:00 2001 From: yubiuser Date: Mon, 4 Oct 2021 22:52:01 +0200 Subject: [PATCH] Do not default true for unset variables (#1909) Signed-off-by: yubiuser --- settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.php b/settings.php index 988d68f5..4402e073 100644 --- a/settings.php +++ b/settings.php @@ -106,7 +106,7 @@ if (isset($setupVars["DNS_FQDN_REQUIRED"])) { $DNSrequiresFQDN = false; } } else { - $DNSrequiresFQDN = true; + $DNSrequiresFQDN = false; } if (isset($setupVars["DNS_BOGUS_PRIV"])) { @@ -116,7 +116,7 @@ if (isset($setupVars["DNS_BOGUS_PRIV"])) { $DNSbogusPriv = false; } } else { - $DNSbogusPriv = true; + $DNSbogusPriv = false; } if (isset($setupVars["DNSSEC"])) {