Re: [Phplib-users] Help! New Error to me ... SOLVED
Brought to you by:
nhruby,
richardarcher
|
From: Bob B. <bo...@iN...> - 2001-08-21 00:56:52
|
Hi --
My dummy ... I ran phpinfo() and discovered that this particular install
had allow_call_time_pass_reference set to OFF by default. Changed that to
"1" in .htaccess, and all's well ...
Sorry for the false alarm ...
Bob.
At 09:48 AM 8/21/01 +1000, you wrote:
>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.
>
>_______________________________________________
>Phplib-users mailing list
>Php...@li...
>http://lists.sourceforge.net/lists/listinfo/phplib-users
|