Quote:
Originally Posted by ozzy47
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']);
|
I just wanted to add I had done this edit without success and turned the mod off till I could get back to it , but just went back and changed several more instances of the split to explode and it appears to be working.
It was hard to catch the errors shown before the page changed. I ignored other lines that included this $subjectTop
reg_split(kens = '/\s(?=([^"]*"[^"]*"[^"]*)*$|[^"]*$)/', $title, -1, PREG_SPLIT_NO_EMPTY);
Other lines changed include but are not limited to
line 338
line 421
line 389
line 375
line 394