Quote:
Originally Posted by Reflect
Installed and all was working fine, using latest VB, now whenever i click on my profile, about 4 lines of this comes up on the top page
Warning: Invalid argument supplied for foreach() in /z/profile/tab.class.php on line 474
|
This was a weird one.
Hotfix:
Edit file: /z/profile/tab.class.php
Find:
Code:
if (count($modules))
Replace with:
Code:
if (is_array($modules) AND count($modules))
Sorry for the trouble!