modules/freifunk: Show warning about diversity only if not using mac80211

This commit is contained in:
Manuel Munz 2011-11-06 17:13:30 +00:00
parent 1ca513cf72
commit 7d81806393

View file

@ -42,7 +42,7 @@ luci.i18n.loadc("freifunk")
<% uci:foreach("wireless", "wifi-device", function(section)
local device = section[".name"]
local url = luci.dispatcher.build_url(luci.dispatcher.context.path[1], "network", "wireless")
if section.diversity ~= "0" and section.disabled ~= "1" then
if section.diversity ~= "0" and section.disabled ~= "1" and section.type ~= "mac80211" then
print('<div class="error">' .. translate("Diversity is enabled for device") .. ' <b>' .. device .. '</b>. '
.. translate("Go to") .. ' <a href="' .. url .. '">' .. translate("wireless settings") .. '</a> ' ..
translate("to disable it.") .. '</div><p />')