* luci/modules/admin-full: made keep-alive and demand optional in interface config
authorJo-Philipp Wich <jow@openwrt.org>
Mon, 13 Oct 2008 00:54:08 +0000 (00:54 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Mon, 13 Oct 2008 00:54:08 +0000 (00:54 +0000)
modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua

index 32de051..780e607 100644 (file)
@@ -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")