summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-admin-full/luasrc
diff options
context:
space:
mode:
authorKarl Palsson <karlp@etactica.com>2016-09-07 16:37:13 +0000
committerKarl Palsson <karlp@etactica.com>2016-09-23 17:05:40 +0000
commit0bea4d17e6fa82c723dd7b5db4b9081f9c4407ce (patch)
tree21c3b975d9b5f17f47fa9a38ca2de93193fe6da8 /modules/luci-mod-admin-full/luasrc
parent07591d77aaf4194a8f7cf42d0a7e1c073c9a6e05 (diff)
wifi_add: show the SSID of the network being joined.
After clicking the "join" button on the scan list, the SSID is no longer visible, though it's kept in the form to pass to the server. Show the chosen SSID on the top of the page, to help people confirm that they're joining the right network. Signed-off-by: Karl Palsson <karlp@etactica.com>
Diffstat (limited to 'modules/luci-mod-admin-full/luasrc')
-rw-r--r--modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
index 96b8b4d74..d64d667a4 100644
--- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
+++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/wifi_add.lua
@@ -16,7 +16,7 @@ if not iw then
return
end
-m = SimpleForm("network", translate("Join Network: Settings"))
+m = SimpleForm("network", translate("Joining Network: %q", http.formvalue("join")))
m.cancel = translate("Back to scan results")
m.reset = false