URL: http://drupalchina.org/node/4842#comment-14793
如果php.ini中,allow_call_time_pass_reference设置为off,启用模块会引发一个php warnning:
Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). 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 in /disk1/wwwroot/sites/default/modules/photos/photos.module on line 163
allow_call_time_pass_reference boolean
是否启用在函数调用时强制参数被按照引用传递。此方法已不被赞成并在 PHP/Zend 未来的版本中很可能不再支持。鼓励使用的方法是在函数定义中指定哪些参数应该用引用传递。鼓励大家尝试关闭此选项并确保脚本能够正常运行,以确保该脚本也能在未来的版本中运行(每次使用此特性都会收到一条警告,参数会被按值传递而不是按照引用传递)。
重新下载模块,覆盖文件即可修复此问题。
album photos模块下载地址:
album photos 6.x-1.0.1,其它版本。
Post new comment