Good, thanks for clarifying the array. I wrote my own error handler for the events I needed to output any errors, and it was a simple foreach that went like this:
PHP Code:
foreach ($pmdm->errors as $errors)
{
$error .= "<li>$errors</li>";
}
The $error was then echoed out in the print_standard_error.
Btw while Im at it, if we need to for instance add 2 users with different values, or send 2 pms, do we need to put the
PHP Code:
$newuser =& datamanager_init('User', $vbulletin, ERRTYPE_ARRAY);
line every time? Also do the variable names have to be different for those 2 instances?
TIA