On Fri, 05 May 2006 17:21:37 +0200
Morten Nilsen <[EMAIL PROTECTED]> wrote:

> Preston Kutzner wrote:
> > Since PHP5 is more strict, it's complaining about some of the custom code.
> 
> have you tried turning on ze1_compatability?
iirc php-5.0.5 introduced a memory related fix, that spews a lot warnings/errors
when using some functions (call-by-value vs call-by-reference):

funcA(funcB());
* Fatal error: Only variables can be passed by reference in $LINE

Code must be changed to something like:
$temp = funcB();
funcA($temp);

Olaf
_______________________________________________
tsl-discuss mailing list
[email protected]
http://lists.trustix.org/mailman/listinfo/tsl-discuss

Reply via email to