Re: [Phplib-users] Help! New Error to me ...
Brought to you by:
nhruby,
richardarcher
|
From: Richard A. <rh...@ju...> - 2001-08-20 23:48:19
|
At 4:24 PM -0700 20/8/01, Bob Bowker wrote:
>Warning: Call-time pass-by-reference has been deprecated
This has been fixed in the CVS tree. The change is to add a '&' to
the function declaration of serialize in session.inc:
change
function serialize($prefix, $str) {
to
function serialize($prefix, &$str) {
...R.
|