Quote:
Originally Posted by Terrablade
Warning: str_split() expects parameter 2 to be long, string given in ..../includes/functions_autotaggerfromcontentandtitle.php on line 13
Warning: str_split() expects parameter 2 to be long, string given in ..../includes/functions_autotaggerfromcontentandtitle.php on line 85
Warning: array_diff() [function.array-diff]: Argument #1 is not an array in ..../includes/functions_autotaggerfromcontentandtitle.php on line 130
Warning: Invalid argument supplied for foreach() in ..../includes/functions_autotaggerfromcontentandtitle.php on line 134
I added the fix Ozzy talked about in line 13 and 85 but these warnings now pop up
|
This fix can?t work.
Try to replace
line 13 with
PHP Code:
return explode(' ', $text);
line 85 with
PHP Code:
return explode(',', $csv);
.
Line 130 and 134 should be o.k. then.
(Not tested).