diff options
author | Steven Barth <steven@midlink.org> | 2008-10-31 10:03:27 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-10-31 10:03:27 +0000 |
commit | 7b99529d954a19f2b5003d2c14ae2e7a6a30d5cf (patch) | |
tree | 9af6f1114ba289d3da51a425dacc102d83c4ab9c /modules/admin-full | |
parent | 803cbec182daaa76a91c6fb76682cfb1f9824e38 (diff) |
Wifi devices should not be deletable (UVL override)
Diffstat (limited to 'modules/admin-full')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua index c095cc5295..b61db62ac4 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/wifi.lua @@ -17,7 +17,7 @@ arg[1] = arg[1] or "" m = Map("wireless", translate("networks"), translate("a_w_networks1")) s = m:section(NamedSection, arg[1], "wifi-device", translate("device") .. " " .. arg[1]) ---s.addremove = true +s.addremove = false back = s:option(DummyValue, "_overview", translate("overview")) back.value = "" |