I don't know enough about when and how various variables are returned. Considering I have an conditional statement with an object to validate inside of this. Am I right that this is returned as a boolean value.
if($id = $oE->validate($_POST, $_FILES)){
...
}
What I really want is for this to return an array of errors if there are any errors, otherwise it will return the $id of the updated content.
With this above, it seems to return a boolean true if any value at all is returned by the validate() object??