Merge branch 'FixupDDR' into release-3.16.1.0

Add missing Disable Default Route checkbox in NAT mode.
This commit is contained in:
Conrad Lara - KG6JEI 2016-01-22 21:11:20 -08:00
commit 624cd39f11
1 changed files with 8 additions and 0 deletions

View File

@ -925,6 +925,14 @@ else
}
print "></td></tr>\n";
print "<tr><td colspan=2><hr></hr></td></tr>";
print "<tr><th colspan=2>Advanced</th></tr>";
print "<tr><td>Disable<br>Default Route</td>";
print "<td><input type=checkbox name=lan_dhcp_noroute value=1";
print " checked" if $lan_dhcp_noroute;
print "></td></tr>\n";
push @hidden, "<input type=hidden name=dhcp_limit value='$dhcp_limit'>";
push @hidden, "<input type=hidden name=dmz_lan_ip value='$dmz_lan_ip'>";