Improve interface settings (#2011)

* Change wording in the "Interface Listening Behavior" box (renamed to simply "Interface settings") to address issue #2009

Signed-off-by: DL6ER <dl6er@dl6er.de>

* Clarify interface listening behavior. Add fourth (new) option it actually bind to an interface.

Signed-off-by: DL6ER <dl6er@dl6er.de>

* Improve .no-danger-area and .danger-area CSS

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2021-12-20 21:38:00 +01:00
committed by GitHub
parent 7927ac1815
commit d7e750bda0
3 changed files with 55 additions and 20 deletions

View File

@@ -332,6 +332,10 @@ function addStaticDHCPLease($mac, $ip, $hostname) {
{
$DNSinterface = "single";
}
elseif($_POST["DNSinterface"] === "bind")
{
$DNSinterface = "bind";
}
elseif($_POST["DNSinterface"] === "all")
{
$DNSinterface = "all";