commit b6e1eac289747e6007146611739588a0babe42a3
parent 8c4cb42e82f45b7a39fd9441d7da20e65440db01
Author: markseu <mark2011@mayberg.se>
Date: Thu, 10 Mar 2016 23:03:43 +0100
System update (developers cut)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/plugins/markdown.php b/system/plugins/markdown.php
@@ -90,7 +90,7 @@ class YellowMarkdownParser extends MarkdownExtraParser
// Handle shortcodes
function _doAutoLinks_shortcode_callback($matches)
{
- $output = $this->page->parseContentBlock("", trim($matches[1]), true);
+ $output = $this->page->parseContentBlock("", $matches[1], true);
if(is_null($output)) $output = htmlspecialchars($matches[0], ENT_NOQUOTES);
return $this->hashPart($output);
}