Call-time pass-by-reference has been deprecated
kohana, php
Solution
Remove the `&` before `$this`.
PHP5 doesn't need that added - all objects are passed as object identifiers by default, no need to mimic this with passing by reference as it was required for PHP 4.
Problem
Possible Duplicate: Call-time pass-by-reference has been deprecated; My Kohana site, get this alert in libraries file. ``` Call-time pass-by-reference has been deprecated ``` Thats problem line: ``` call_user_func('Formo_'.$name.'::load', & $this); ``` How can i solve this?