Bug tracker

This ticket has been moved to our new tracker. Open Ticket PHPBB3-2085 now.

Call-time pass-by-reference (fix completed in vcs)

*** 3.0.B3 ***

"...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 utf8_normalize_nfc(). 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 ..."

This is being seen in A LOT of places. My personal solution is to go to where the offending line is and comment it out. <shrugs> Wouldn't be so bad if there were only one or two times I had to do this, but so far I'm up to 12.

Comments / History

Posted by cooleo100d on Nov 13th 2006, 06:53

I'm having the same exact problem. I would assume just by reading the error that it has something to do with the fact that my server is running PHP 5.

Posted by Dr.Death (QA Team) on Nov 13th 2006, 07:21

confirmed.

Using: php 5.1.2 - 5.0.18-nt on a local testsystem.

Posted by Dr.Death (QA Team) on Nov 13th 2006, 08:13

In the php.ini:

allow_call_time_pass_reference = off

I'm not able to change this on my webserver and my provider don't want to activate it

Posted by profpete on Nov 13th 2006, 10:39

This will be the placement of &$something when calling the function rather than using the &$ in the declaration of the function itself... should be a simple fix.

Posted by LimitForums on Nov 13th 2006, 18:52

confirmed.

PHP 5.1.6
MySQL 5.0.27

Posted by ZyreXiaix on Nov 13th 2006, 20:54

Since I run and maintain all my own servers, in the php.ini I set it to the following:

allow_call_time_pass_reference = on

Everything works fine now.

Posted by ZyreXiaix on Nov 13th 2006, 21:24

Okay, let me rephrase that. Setting my php.ini file to "allow_call_time_pass_reference = on" did NOT work.

Posted by who_cares on Nov 13th 2006, 22:27

I've been seeing this bug too.
it shows up when I try to open a user's profile in the admin panel

Ticket details

Related SVN changesets