Description:
The need of the allow_call_time_pass_reference to be enabled in php.ini to run Eventum.
This is something that is going to be depreciated in the near future and is recomended not to be used, from the php.net website:
Whether to warn when arguments are passed by reference at function call time. This method is deprecated and is likely to be unsupported in future versions of PHP/Zend. The encouraged method of specifying which arguments should be passed by reference is in the function declaration. You're encouraged to try and turn this option Off and make sure your scripts work properly with it in order to ensure they will work with future versions of the language (you will receive a warning each time you use this feature).
Passing arguments by reference at function call time was deprecated for code cleanliness reason. Function can modify its argument in undocumented way if it didn't declared that the argument is passed by reference. To prevent side-effects it's better to specify which arguments are passed by reference in function declaration only.
This has stopped my being able to use Eventum as i cannot change my php.ini setting (shared host), and it will not let me set this setting in a .htaccess file.
Regards
Tim Pearson
How to repeat:
Turn allow_call_time_pass_reference off in php.ini, and run the setup script.