From: Jo-Philipp Wich Date: Sun, 25 Sep 2011 23:29:21 +0000 (+0000) Subject: modules/admin-full: register missing wireless actions X-Git-Tag: 0.11.0~1696 X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=2829139f35a6123b0e40c16cf2813fed808d61e6 modules/admin-full: register missing wireless actions --- diff --git a/modules/admin-full/luasrc/controller/admin/network.lua b/modules/admin-full/luasrc/controller/admin/network.lua index d76f83ffb6..9d9aab4a2c 100644 --- a/modules/admin-full/luasrc/controller/admin/network.lua +++ b/modules/admin-full/luasrc/controller/admin/network.lua @@ -48,16 +48,22 @@ function index() page.leaf = true page.subindex = true - page = entry({"admin", "network", "wireless_join"}, call("wifi_join"), nil, 16) + page = entry({"admin", "network", "wireless_join"}, call("wifi_join"), nil) page.leaf = true - page = entry({"admin", "network", "wireless_add"}, call("wifi_add"), nil, 16) + page = entry({"admin", "network", "wireless_add"}, call("wifi_add"), nil) page.leaf = true - page = entry({"admin", "network", "wireless_delete"}, call("wifi_delete"), nil, 16) + page = entry({"admin", "network", "wireless_delete"}, call("wifi_delete"), nil) page.leaf = true - page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil, 16) + page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil) + page.leaf = true + + page = entry({"admin", "network", "wireless_reconnect"}, call("wifi_reconnect"), nil) + page.leaf = true + + page = entry({"admin", "network", "wireless_shutdown"}, call("wifi_reconnect"), nil) page.leaf = true local wdev