From b29bbf4f11c7e72336e9e111d107f121cd89cf68 Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 15 Oct 2019 21:07:21 +0100 Subject: [PATCH] Replace HTML linebreaks in ConvertToSecurity() --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index ab1b324e..87ce8cdd 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -262,7 +262,7 @@ function ConvertToSecurity($security) // And you shouldn't be using WEP these days anyway. return 'Open'; } else { - return implode('
', $options); + return implode(' / ', $options); } }