From b7e6804e242ecdd89c44c72ce0ec2c063d987e18 Mon Sep 17 00:00:00 2001 From: Luc Date: Sat, 25 Jul 2015 15:07:22 +0800 Subject: [PATCH] Change wording for encryption set No instead of nothing and set Yes instead of * --- esp8266/webinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp8266/webinterface.cpp b/esp8266/webinterface.cpp index 425f41f7..1ee80f13 100644 --- a/esp8266/webinterface.cpp +++ b/esp8266/webinterface.cpp @@ -1379,7 +1379,7 @@ void handle_web_interface_configSTA() TD_ENTRY(WiFi.SSID(i)) stmp = String(100+WiFi.RSSI(i)) + "%"; TD_ENTRY(stmp.c_str()) - TD_ENTRY((WiFi.encryptionType(i) == ENC_TYPE_NONE)?" ":"*") + TD_ENTRY((WiFi.encryptionType(i) == ENC_TYPE_NONE)?PROGMEM2CHAR(VALUE_NO):PROGMEM2CHAR(VALUE_YES)) } //close table buffer2send+=(PROGMEM2CHAR(TABLE_END));