As of 4.0.6 or something, call_user_func changed. Before I could reference things, ie:
call_user_func("foo", &$var1);
and:
function foo(&$var1) { ... }
However now I get a nasty error:
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of call_user_func(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer.
Help? 🙂 Thanks.