1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Update SSID label

This commit is contained in:
billz 2020-02-03 09:28:06 +00:00
parent 36e4d5baf0
commit b37221b55b

View File

@ -102,7 +102,7 @@ function DisplayDashboard(&$extraFooterScripts)
if (!preg_match('/SSID: ([^ ]{1,'.SSIDMAXLEN.'})/', $stdoutIwWRepSpaces, $matchesSSID)) { if (!preg_match('/SSID: ([^ ]{1,'.SSIDMAXLEN.'})/', $stdoutIwWRepSpaces, $matchesSSID)) {
$wlanHasLink = false; $wlanHasLink = false;
$matchesSSID[1] = 'Not connected'; $matchesSSID[1] = 'None';
} }
$connectedSSID = $matchesSSID[1]; $connectedSSID = $matchesSSID[1];