mirror of
https://github.com/pi-hole/web.git
synced 2024-12-06 19:36:21 +01:00
Do not default true for unset variables (#1909)
Signed-off-by: yubiuser <ckoenig@posteo.de>
This commit is contained in:
+2
-2
@@ -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"])) {
|
||||
|
||||
Reference in New Issue
Block a user