Fix incorrect escaping break lines of WPA and WPA2 secured networks.

Signed-off-by: D9ping <D9ping@users.noreply.github.com>
This commit is contained in:
D9ping
2018-10-24 01:42:47 +02:00
parent d9b2d20e28
commit 54e55775ea
2 changed files with 3 additions and 3 deletions

View File

@@ -175,9 +175,9 @@ function ConvertToSecurity( $security ) {
$protocol = $protocol_match[1];
$matchArr = explode('-', $match);
if (count($matchArr) > 2) {
$options[] = $protocol . ' ('. $matchArr[2] .')';
$options[] = htmlspecialchars($protocol . ' ('. $matchArr[2] .')', ENT_QUOTES);
} else {
$options[] = $protocol;
$options[] = htmlspecialchars($protocol, ENT_QUOTES);
}
}
}