System update (developers cut)

This commit is contained in:
markseu 2016-03-10 23:03:43 +01:00
parent 8c4cb42e82
commit b6e1eac289

View file

@ -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);
}