Change wording for encryption

set No instead of nothing and set Yes instead of *
This commit is contained in:
Luc 2015-07-25 15:07:22 +08:00
parent 4c4a78fc62
commit b7e6804e24

View File

@ -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));