Fix Parsedown for PHP 7

We should actually consider to update this library.
This commit is contained in:
Christoph M. Becker
2019-07-12 16:49:37 +02:00
parent 5f1c2fb6ce
commit 61e52a4204

View File

@ -891,7 +891,7 @@ class Parsedown
if (isset($Element['handler']))
{
$markup .= $this->$Element['handler']($Element['text']);
$markup .= $this->{$Element['handler']}($Element['text']);
}
else
{