PHP7 problem
-
Hi
Just trying out the plugin and found a problem with PHP7.
In ‘awesome-surveys/includes/PFBC/Base.php’ there is a problem on line 28.The defaults in call of dynamic methods has changed from PHP5 to PHP7.
The the line should be changed from:
$this->$method_reference["set" . $property]($value);
To:
$this->{$method_reference["set" . $property]}($value);
I have not testet this on PHP5. My host is only PHP7, but it should work in theory.
- The topic ‘PHP7 problem’ is closed to new replies.