From cc118a5b7c689f03a518a81ed3895899737656fa Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer <reinhold@kainhofer.com> Date: Sat, 2 Dec 2017 17:14:35 +0100 Subject: [PATCH] Fix PHP 7.0 incompatibility --- plugin-update-checker/vendor/Parsedown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin-update-checker/vendor/Parsedown.php b/plugin-update-checker/vendor/Parsedown.php index 71a033e..bbc2d32 100644 --- a/plugin-update-checker/vendor/Parsedown.php +++ b/plugin-update-checker/vendor/Parsedown.php @@ -1409,7 +1409,7 @@ class Parsedown if (isset($Element['handler'])) { - $markup .= $this->$Element['handler']($Element['text']); + $markup .= $this->{$Element['handler']}($Element['text']); } else { -- GitLab