Replace HTML linebreaks in ConvertToSecurity()

This commit is contained in:
billz 2019-10-15 21:07:21 +01:00
parent ea578fcd5f
commit b29bbf4f11
1 changed files with 1 additions and 1 deletions

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