Php 科哈纳2福尔莫警告

Php 科哈纳2福尔莫警告,php,database,kohana,Php,Database,Kohana,使用Kohana 2版本,一切正常。但今天单击Koahana网站,会出现以下错误: An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator. panel/modules/formo/libraries/Formo.php [103]: Call-time pass-by-reference h

使用Kohana 2版本,一切正常。但今天单击Koahana网站,会出现以下错误:

An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator.
panel/modules/formo/libraries/Formo.php [103]:
Call-time pass-by-reference has been deprecated
这是103。行:

call_user_func('Formo_'.$name.'::load', & $this);

我从未更改过任何文件、目录和为什么会收到此警告?

调用中的用户函数表示通过引用传递变量,但在php 5.3中不赞成在调用函数(即调用时间通过引用传递)时这样做

删除符号应该对问题进行排序,但是可以在call_user_func声明中通过ref传递

有关更多信息,请参阅