From 355c21304afb0d388fb8bd6132e0dbcb19f03428 Mon Sep 17 00:00:00 2001 From: Hannu Nyman Date: Sat, 19 Mar 2016 15:38:41 +0200 Subject: [PATCH] luci-mod-admin-full: Fix dhcpv6 ra_management option stateless value Fix dhcpv6 ra_management option's handling of "stateless" value. Default value for the option is 1, so trying to store "" instead of "0" for stateless is not working. This fixes #676 Signed-off-by: Hannu Nyman --- .../luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua index 2b6ed5056..16a104494 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/ifaces.lua @@ -492,8 +492,9 @@ if has_dnsmasq and net:proto() == "static" then o:value("relay", translate("relay mode")) o:value("hybrid", translate("hybrid mode")) - o = s:taboption("ipv6", ListValue, "ra_management", translate("DHCPv6-Mode")) - o:value("", translate("stateless")) + o = s:taboption("ipv6", ListValue, "ra_management", translate("DHCPv6-Mode"), + translate("Default is stateless + stateful")) + o:value("0", translate("stateless")) o:value("1", translate("stateless + stateful")) o:value("2", translate("stateful-only")) o:depends("dhcpv6", "server") -- 2.11.0