mirror of
https://github.com/php/web-doc.git
synced 2025-08-10 02:56:24 +00:00
Fix Parsedown for PHP 7
We should actually consider to update this library.
This commit is contained in:
@ -891,7 +891,7 @@ class Parsedown
|
||||
|
||||
if (isset($Element['handler']))
|
||||
{
|
||||
$markup .= $this->$Element['handler']($Element['text']);
|
||||
$markup .= $this->{$Element['handler']}($Element['text']);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user