PHP 5.3 compat

This commit is contained in:
Aidan Woods 2018-03-18 23:06:26 +00:00
parent e59fbd736d
commit 1fa6b038af
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9
1 changed files with 2 additions and 1 deletions

View File

@ -1416,7 +1416,8 @@ class Parsedown
protected function unmarkedText($text)
{
return $this->element($this->inlineText($text)['element']);
$Inline = $this->inlineText($text);
return $this->element($Inline['element']);
}
#