mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
Define displayed text for internet access
This commit is contained in:
parent
4623060f08
commit
33a099de61
1 changed files with 4 additions and 2 deletions
|
@ -54,8 +54,10 @@
|
||||||
echo "<td>".$route["interface"]."</td>";
|
echo "<td>".$route["interface"]."</td>";
|
||||||
echo "<td>".$route["ip-address"]."</td>";
|
echo "<td>".$route["ip-address"]."</td>";
|
||||||
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>";
|
echo "<td>".$route["gateway"]."<br>".$route["gw-name"]."</td>";
|
||||||
echo "<td>".$route["access-ip"]."<br>".RASPI_ACCESS_CHECK_IP."</td>";
|
$checkok = $route["access-ip"] ? "✓" : "failed";
|
||||||
echo "<td>".$route["access-dns"]."<br>".RASPI_ACCESS_CHECK_DNS."</td>";
|
echo "<td>".$checkok."<br>".RASPI_ACCESS_CHECK_IP."</td>";
|
||||||
|
$checkok = $route["access-dns"] ? "✓" : "failed";
|
||||||
|
echo "<td>".$checkok."<br>".RASPI_ACCESS_CHECK_DNS."</td>";
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue