Forums
Forums / Plugin: Legull / Fix for PHP 7 compatibility
(@billmedina)
9 years, 2 months ago
/wp-content/plugins/legull/lib/parsedown.php line 915
Change the line: $markup .= $this->$Element['handler']($Element['text']);
$markup .= $this->$Element['handler']($Element['text']);
To: $markup .= $this->{$Element['handler']}($Element['text']);
$markup .= $this->{$Element['handler']}($Element['text']);
The topic ‘Fix for PHP 7 compatibility’ is closed to new replies.