I received this error when trying to test simplesamlphp Parse error: syntax error, unexpected T_FUNCTION in /simplesamlphp/modules/core/lib/Auth/Process/GenerateGroups.php on line 139
What is causing this?
I'm running PHP 5.2
I received this error when trying to test simplesamlphp Parse error: syntax error, unexpected T_FUNCTION in /simplesamlphp/modules/core/lib/Auth/Process/GenerateGroups.php on line 139
What is causing this?
I'm running PHP 5.2
This is because this is using an anonymous function. I replaced this method with the one below as well as an extra one and it now works correctly in 5.2. SimplesamlPHP's requirements state it only needs PHP 5.1 or 5.2 but this obviously is incorrect without this code change.