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

Replace HTML linebreaks in ConvertToSecurity()

This commit is contained in:
billz 2019-10-15 21:07:21 +01:00
parent ea578fcd5f
commit b29bbf4f11

View File

@ -262,7 +262,7 @@ function ConvertToSecurity($security)
// And you shouldn't be using WEP these days anyway.
return 'Open';
} else {
return implode('<br />', $options);
return implode(' / ', $options);
}
}