From 3a197833cd2c56eeebe771895033fdacb75090a1 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 14 Apr 2017 15:28:18 +0200 Subject: [PATCH] added space Signed-off-by: Roland Haeder --- include/bbcode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bbcode.php b/include/bbcode.php index b955d6c790..1075d84ac8 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -769,7 +769,7 @@ function bb_CleanPictureLinks($text) { function bb_highlight($match) { if (in_array(strtolower($match[1]), ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby', 'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])) { - return text_highlight($match[2],strtolower($match[1])); + return text_highlight($match[2], strtolower($match[1])); } return $match[0]; }