Quote:
Originally Posted by SwollenCranium
Agreed.
I get a near identical error.
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /index.php(539) : eval()'d code on line 245
Uninstalling NOW.
|
Alright people. I've figured out what the issue is.
The Problem:
Unfortunately, the mod was made for php4, not php5. Those of you running php5 on your servers will receive this error.
Solution:
Go into Plug-in Manager and edit the
Show Meet our team at forum home page plug-in.
Change this:
Code:
$tmp = unserialize($user["phrasegroup_siteteam"]);
to this:
Code:
$tmp[] = unserialize($user["phrasegroup_siteteam"]);
No more errors for those of you running php5. Worked for me.
Thanks again to Abe1 who helped me figure this out!!