From af49447af3f45a675fb7b7c745e3490979c047fe Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 22 Jul 2013 20:21:17 -0700 Subject: [PATCH] Fix error in 2.1 branch dhcp6prefixonly implementation The Main branch code was in the correct place, but the version applied to 2.1 branch had this code in the wrong place. --- usr/local/www/interfaces.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php index 2ea43e1818..cbb064299c 100755 --- a/usr/local/www/interfaces.php +++ b/usr/local/www/interfaces.php @@ -876,8 +876,6 @@ if ($_POST['apply']) { if ($_POST['gatewayv6'] != "none") { $wancfg['gatewayv6'] = $_POST['gatewayv6']; } - if($_POST['dhcp6prefixonly'] == "yes") - $wancfg['dhcp6prefixonly'] = true; break; case "slaac": $wancfg['ipaddrv6'] = "slaac"; @@ -886,6 +884,8 @@ if ($_POST['apply']) { $wancfg['ipaddrv6'] = "dhcp6"; $wancfg['dhcp6-duid'] = $_POST['dhcp6-duid']; $wancfg['dhcp6-ia-pd-len'] = $_POST['dhcp6-ia-pd-len']; + if($_POST['dhcp6prefixonly'] == "yes") + $wancfg['dhcp6prefixonly'] = true; if($gateway_item) { $a_gateways[] = $gateway_item; }