From f127d65de904773a0a9959c90c27de03593dc5cf Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 16 Oct 2017 20:55:37 +0000 Subject: [PATCH] Added spaces --- include/html2bbcode.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/html2bbcode.php b/include/html2bbcode.php index e7e253e81b..e90f6c1094 100644 --- a/include/html2bbcode.php +++ b/include/html2bbcode.php @@ -90,10 +90,10 @@ function html2bbcode($message, $basepath = '') function ($matches) use (&$codeblocks) { $return = '[codeblock-' . count($codeblocks) . ']'; - $prefix = '[code]'; - if ($matches[1] != '') { - $prefix = '[code=' . $matches[1] . ']'; - } + $prefix = '[code]'; + if ($matches[1] != '') { + $prefix = '[code=' . $matches[1] . ']'; + } $codeblocks[] = $prefix . $matches[2] . '[/code]'; return $return; } @@ -313,10 +313,10 @@ function html2bbcode($message, $basepath = '') // Restore code blocks $message = preg_replace_callback('#\[codeblock-([0-9]+)\]#iU', function ($matches) use ($codeblocks) { - $return = ''; - if (isset($codeblocks[intval($matches[1])])) { - $return = $codeblocks[$matches[1]]; - } + $return = ''; + if (isset($codeblocks[intval($matches[1])])) { + $return = $codeblocks[$matches[1]]; + } return $return; } , $message);