Warning: Assigning the return value of new by reference is deprecated in ....Bla Bla Bla
How to fix.
Open the file, includes/functions_autotagger.php on line 191, in that file find the following:
Code:
$excludedForums = split('\|', $vbulletin->options['autotag_exclude_forums']);
Replace with:
Code:
$excludedForums = explode('\|', $vbulletin->options['autotag_exclude_forums']);
Find:
Code:
$excludedUsers = split('\|', $vbulletin->options['autotag_exclude_users']);
Replace it with this:
Code:
$excludedUsers = explode('\|', $vbulletin->options['autotag_exclude_users']);