Merge pull request #280 from kelunik/master

Fixes PHP 7 compatibility
This commit is contained in:
Emanuil Rusev 2015-02-02 02:33:38 +02:00
commit 6c9df528aa
1 changed files with 1 additions and 1 deletions

View File

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