I've been searching Google, but I have not found any examples on how to validate more than one model with Kohana 3.2.
try
{
$one = ORM::factory('one');
$one->values($this->request->post());
$one->check();
$two = ORM::factory('two');
$two->values($this->request->post());
$two->check();
}
catch(ORM_Validation_Exception $e)
{
$errors = $e->errors('models');
}
If "one" has any errors, "two" is never checked.