diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-07-08 15:18:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 15:18:21 +0200 |
commit | 6be690473bfd6d23fb329cfd86f0c3776ea0e0e6 (patch) | |
tree | dad7f4bb6a24d641bc6d1df75eea60cfe5d6fd06 | |
parent | 22945a028d395fdebeccb41e99181212d5c6ed9a (diff) | |
parent | 5e1f2a1b58b5f408445ed67f2c45aa23c4b0160d (diff) |
Merge pull request #743 from HenryGiraldo/master
Closes #741: Can't delete disabled wireless networks
-rw-r--r-- | modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_overview.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_overview.htm b/modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_overview.htm index 1df6b2884..9c351d393 100644 --- a/modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_overview.htm +++ b/modules/luci-mod-admin-full/luasrc/view/admin_network/wifi_overview.htm @@ -427,7 +427,7 @@ <td class="cbi-value-field" style="width:310px;text-align:right"> <input id="<%=net:id()%>-iw-toggle" type="button" class="cbi-button cbi-button-reload" style="width:100px" onclick="wifi_shutdown('<%=net:id()%>', this)" title="<%:Delete this network%>" value="<%:Enable%>" /> <input type="button" class="cbi-button cbi-button-edit" style="width:100px" onclick="location.href='<%=net:adminlink()%>'" title="<%:Edit this network%>" value="<%:Edit%>" /> - <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="wifi_delete('<%=net:ifname()%>')" title="<%:Delete this network%>" value="<%:Remove%>" /> + <input type="button" class="cbi-button cbi-button-remove" style="width:100px" onclick="wifi_delete('<%=net:id()%>')" title="<%:Delete this network%>" value="<%:Remove%>" /> </td> </tr> <% end %> |