Correctly set interface to dhcp in wan case.

This commit is contained in:
Ermal Luçi 2008-07-08 18:07:55 +00:00
parent 2e76e612e0
commit 79b322f020

View File

@ -103,7 +103,7 @@
echo gettext("Configure {$upperifname} interface via DHCP? [y|n]") . "\n> ";
$intdhcp = chop(fgets($fp));
if(strtolower($intdhcp) == "y" || strtolower($intdhcp) == "yes") {
$intip = "DHCP";
$intip = "dhcp";
$intbits = "";
$isintdhcp = true;
}