]> git.mxchange.org Git - friendica.git/blobdiff - include/html2bbcode.php
Merge pull request #4246 from zeroadam/Widget-#3878
[friendica.git] / include / html2bbcode.php
index 763351e802d44179075969b4876b8066c7c3b0f6..936bce338476fa26b265201bfd051a95b76e879e 100644 (file)
@@ -95,7 +95,7 @@ function html2bbcode($message, $basepath = '')
                        if ($matches[1] != '') {
                                $prefix = '[code=' . $matches[1] . ']';
                        }
-                       $codeblocks[] = $prefix . $matches[2] . '[/code]';
+                       $codeblocks[] = $prefix . trim($matches[2]) . '[/code]';
                        return $return;
                },
                $message
@@ -247,6 +247,7 @@ function html2bbcode($message, $basepath = '')
        node2bbcode($doc, 'iframe', array('src'=>'/(.+)/'), '[iframe]$1', '[/iframe]');
 
        node2bbcode($doc, 'key', array(), '[code]', '[/code]');
+       node2bbcode($doc, 'code', array(), '[code]', '[/code]');
 
        $message = $doc->saveHTML();