diff options
author | Georgi Valkov <gvalkov@abv.bg> | 2015-07-18 02:28:54 +0300 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-07-27 11:37:09 +0200 |
commit | ec170d62821579dea84e9333a7c7561dd7d59157 (patch) | |
tree | f0a2f4a1454700d2e91141cc6d82a3c8e5469bd2 /modules/luci-mod-admin-full/luasrc/view/admin_status | |
parent | 159b60f449b50d3069478c95203ebbaa90861ff5 (diff) |
Fix: A disabled wireless network may be shown as enabled, when multiple networks are defined on the same radio.
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc/view/admin_status')
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm b/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm index 548b22d167..07a96b2bf0 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_status/index.htm @@ -352,7 +352,7 @@ for (var nidx = 0; nidx < dev.networks.length; nidx++) { var net = dev.networks[nidx]; - var is_assoc = (net.bssid != '00:00:00:00:00:00' && net.channel); + var is_assoc = (net.bssid != '00:00:00:00:00:00' && net.channel && !net.disabled); var icon; if (!is_assoc) |