Thank you in advance for any help you may have to offer
While trying to upgrade a Dolphin script from 7.0.1 to 7.0.2, I receive this error after the files are uploaded.
Warning: Invalid argument supplied for foreach() in /home/xxxxxxxx/public_html/inc/classes/BxDolDb.php on line 388
The area of the error is below with line 388 indicated with arrows:
$aFoundError = array();
foreach( $aBackTrace as $aCall )
{
foreach( $aCall['args'] as $argNum => $argVal )
{
if( is_string($argVal) and strcmp( $argVal, $query ) == 0 )
Line 388 >>> {
$aFoundError['file'] = $aCall['file'];
$aFoundError['line'] = $aCall['line'];
$aFoundError['function'] = $aCall['function'];
$aFoundError['arg'] = $argNum;
}
}
}
