Quote:
Originally Posted by Reflect
That kind of works....
Most profiles are fine, but a few still have it, but instead of 4 lines of the error code, it 3
Warning: Invalid argument supplied for foreach() in /z/profile/tab.class.php on line 424
My profile is working fine and so are another 4 users who i have checked, but when i go into a another user, i get the error messages.
|
Sorry about that. To also get rid of the 424 use this one:
Edit file: /z/profile/tab.class.php
Find:
Code:
foreach ($x as $id)
{
$ids[] = $id;
}
Replace with:
Code:
if (is_array($x) AND count($x))
{
foreach ($x as $id)
{
$ids[] = $id;
}
}