diff options
author | Steven Barth <steven@midlink.org> | 2008-07-25 20:49:00 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-25 20:49:00 +0000 |
commit | e73752cae95905eec118e7ca8e6aee2b6e70a9f7 (patch) | |
tree | d324fc76e54075858548eadb16b785e173710ec5 /modules | |
parent | a91f1a7e376ac6183859c726091191d3d3d6025f (diff) |
modules/admin-full: Made interfaces optional
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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 2851f3ad5..8afe05103 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua @@ -28,7 +28,7 @@ br = s:option(Flag, "type", translate("a_n_i_bridge"), translate("a_n_i_bridge1" br.enabled = "bridge" br.rmempty = true -s:option(Value, "ifname", translate("interface")) +s:option(Value, "ifname", translate("interface")).rmempty = true s:option(Value, "ipaddr", translate("ipaddress")) |