Syntax Error from BoxLoader.php
-
Getting Internal Server Error 500. Also PHP error is
Parse error: syntax error, unexpected ‘)’ in ../scroll-triggered-boxes/src/BoxLoader.php(124) : eval()’d code on line 1
The code that is causing problems is:
$matched = eval( "return (" . $value . ");" );
Changing it to the following appears to work:
$matched = eval( "return " . $value . ";" );
I think the issue is that php
return
is not a function so the parenthesis are unnecessary.https://www.ads-software.com/plugins/scroll-triggered-boxes/
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Syntax Error from BoxLoader.php’ is closed to new replies.