mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +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']))
|
if (isset($Element['handler']))
|
||||||
{
|
{
|
||||||
$markup .= $this->$Element['handler']($Element['text']);
|
$markup .= $this->{$Element['handler']}($Element['text']);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user