Viewing 1 replies (of 1 total)
  • on line 96 of that file:

    $uid_filter = str_replace(‘%user_id%’, $username, $uid_filter, &$replace_count);

    removing the ‘&’ should take care of the error:

    $uid_filter = str_replace(‘%user_id%’, $username, $uid_filter, $replace_count);

Viewing 1 replies (of 1 total)
  • The topic ‘Call-time pass-by-reference has been removed’ is closed to new replies.