dns.cgi: Show ISP name servers as disabled

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2020-01-07 14:49:54 +00:00
parent 984f14bdc4
commit 77c7a94cdd

View File

@@ -421,22 +421,22 @@ print <<END;
END
# Check the usage of ISP assigned nameservers is enabled.
if ($settings{'USE_ISP_NAMESERVERS'} eq "on") {
my $id="1";
my $id = 1;
# Loop through the array which stores the files.
foreach my $file (@ISP_nameserver_files) {
# Grab the address of the nameserver.
my $address = &grab_address_from_file($file);
# Loop through the array which stores the files.
foreach my $file (@ISP_nameserver_files) {
# Grab the address of the nameserver.
my $address = &grab_address_from_file($file);
# Check if we got an address.
if ($address) {
# Add the address to the hash of nameservers.
$dns_servers{$id} = [ "$address", "none", "enabled", "$Lang::tr{'dns isp assigned nameserver'}" ];
# Check if we got an address.
if ($address) {
# Add the address to the hash of nameservers.
$dns_servers{$id} = [ "$address", "none",
($settings{'USE_ISP_NAMESERVERS'} eq "on") ? "enabled" : "disabled",
"$Lang::tr{'dns isp assigned nameserver'}" ];
# Increase id by one.
$id++;
}
# Increase id by one.
$id++;
}
}
@@ -524,6 +524,11 @@ END
if (!$rdns) { $rdns = $Lang::tr{'lookup failed'}; }
# Mark ISP name servers as disabled
if ($id <= 2 && $enabled eq "disabled") {
$nameserver = "<del>$nameserver</del>";
}
print <<END;
<tr>
<td align="center" $col>