Forum Moderators: coopster
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.
Should allow_call_time_pass_reference be set to "on" or "true"?
I think I've tried both bust still getting the error. Error is in arcade.php, it is arcade system for vbulletin board.
[edited by: Karabaja at 1:06 pm (utc) on Sep. 5, 2006]
$vbulletin->userinfo = array_merge(convert_bits_to_array(&$vbulletin->userinfo['arcadeoptions'], $vbulletin->bf_misc_arcadeoptions), $vbulletin->userinfo);
$otheruser['options'] = iif($vbulletin->userinfo['userid']==$challenge['touserid'], &$challenge['fromarcadeoptions'], &$challenge['toarcadeoptions']);
$otheruser['email'] = iif($vbulletin->userinfo['userid']==$challenge['touserid'], &$challenge['fromemail'], &$challenge['toemail']);
$otheruser['username'] = iif($vbulletin->userinfo['userid']==$challenge['touserid'], &$challenge['fromusername'], &$challenge['tousername']);