PDA


View Full Version : Warning: Invalid argument supplied for foreach()


Brian
06-08-2005, 11:36 AM
For those getting this error:
Warning: Invalid argument supplied for foreach() in /includes/adminfunctions_vba_cmps.php on line 634

Look in your forum/admincp/vba_cmps_admin.php file for this code:
construct_cmps_settings('module');

Replace with this:
if (!empty($setting))
{
construct_cmps_settings('module');
}


And that should take care of the problem.

AstroDude
06-21-2005, 10:14 PM
Yes. Yes it did take care of the problem. Thank-you.