hofff / contao-calendarfield

GNU Lesser General Public License v3.0
18 stars 3 forks source link

PHP 7 HOOK Compatibility #37

Closed Ma3xl3 closed 7 years ago

Ma3xl3 commented 7 years ago

First your plugin is great. Unfortunately it is not working on PHP 7.x if you use a HOOK. On PHP 5.6 it works great.

The problem is in the file FormCalendarField.php on Line 142:

$arrConfig = $objCallback->$callback[1]($arrConfig, $this);

The correct syntax would be:

$arrConfig = $objCallback->{$callback[1]}($arrConfig, $this);

Is it possible to fix that problem? Thx