From: Jo-Philipp Wich Date: Mon, 13 Oct 2008 00:54:08 +0000 (+0000) Subject: * luci/modules/admin-full: made keep-alive and demand optional in interface config X-Git-Tag: 0.9.0~1106 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=576e6fe8f02b8b3769230fd610229d83f58b49e0 * luci/modules/admin-full: made keep-alive and demand optional in interface config --- diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua index 32de05154..780e6075b 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua @@ -165,7 +165,7 @@ ka = s:option(Value, "keepalive", translate("network_interface_keepalive"), translate("network_interface_keepalive_desc") ) -ka.rmempty = true +ka.optional = true ka:depends("proto", "pptp") ka:depends("proto", "pppoe") ka:depends("proto", "ppp") @@ -175,7 +175,7 @@ demand = s:option(Value, "demand", translate("network_interface_demand"), translate("network_interface_demand_desc") ) -demand.rmempty = true +demand.optional = true demand:depends("proto", "pptp") demand:depends("proto", "pppoe") demand:depends("proto", "ppp")