Alright I'll see if I can't figure out why it still won't work on my end.
I forgot to post that the error is referenced at:
Quote:
Warning: Invalid argument supplied for foreach() in [path]/includes/functions.php on line 3965
|
these are lines 3962-3978:
Code:
function fetch_error_array($errors)
{
$compiled_errors = array();
foreach ($errors as $key => $value)
{
if (is_string($value))
{
$compiled_errors[$key] = fetch_error($value);
}
else if (is_array($value))
{
$compiled_errors[$key] = call_user_func_array('fetch_error', $value);
}
}
return $compiled_errors;
}