[Sat Nov 11 17:03:16 2006] [error] [client 208.109.102.90] PHP 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 [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. However, future versions may not support this any longer. in /var/www/html/sites//modules/cre/cre.module on line 192

Comments

Scott Reynolds’s picture

What version of php? I have to come up with a nicer way to write this.

rszrama’s picture

Good explanation of the issue: http://www.easysoft.com/support/kb/kb00921.html

Calling a function and passing a variable by reference as an argument (&$arg) has been deprecated... now it must be in the function prototype... Not good for development when you have no way to force people to make their prototypes properly or you want to mix and match by value and by reference.

Scott Reynolds’s picture

Priority: Normal » Minor
Status: Active » Closed (fixed)

This is no longer there. One amazon pointed this out i went through and fixed the deprecated issue.

I just never closed it