diff options
author | Steven Barth <steven@midlink.org> | 2008-04-27 21:09:45 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-27 21:09:45 +0000 |
commit | 9d8689b09bff055caabff87c1ee392043dd25f57 (patch) | |
tree | 7dd14ba26232a256a4d5263aa2ff2ff28a0d168e /module | |
parent | a48593c14516ef8a953eed9c36f2d57d5cc9fa00 (diff) |
* Fixed Freifunk wizard again
Diffstat (limited to 'module')
-rw-r--r-- | module/admin-core/src/controller/admin/index.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/admin-core/src/controller/admin/index.lua b/module/admin-core/src/controller/admin/index.lua index ba582cf5c5..e6b39f8a06 100644 --- a/module/admin-core/src/controller/admin/index.lua +++ b/module/admin-core/src/controller/admin/index.lua @@ -109,7 +109,7 @@ function configure_freifunk() local wcfg = uci:show("wireless") if type(wifi) == "table" and wcfg then for iface, v in pairs(wifi) do - if wcfg[iface] then + if wcfg.wireless[iface] then -- Cleanup for k, v in pairs(wcfg.wireless) do if v[".type"] == "wifi-iface" and v.device == iface then |