Vediamo se riesco ad aiutarti ed aiutarmi così
l'errore fa riferimento a questa porzione di codice
258 [size=78%]public function validate($form, $data, $group = null)[/size]
259 {
260 // Filter and validate the form data.
261 $data = $form->filter($data);
262 $return = $form->validate($data, $group);
[/size][/size][size=78%]// Check for an error.[/size]
if ($return instanceof Exception)
{
$this->setError($return->getMessage());
return false;
}
// Check the validation results.
if ($return === false)
{
// Get the validation messages from the form.
foreach ($form->getErrors() as $message)
{
$this->setError(JText::_($message));
}
return false;
}
return $data;
}