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.
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.