Hi,
im trying to replace the default 'Required' message in this validator:
$this->setValidator('email', new sfValidatorAnd(array(
new sfValidatorEmail(array('required' => true, 'trim' => true)),
new sfValidatorString(array('required' => true, 'max_length' => 80)),
new sfValidatorDoctrineUnique(array(
'model' => 'sfGuardUserProfile',
'column' => 'email'
), array(
'invalid' => 'An account with that email address already
exists. If you have forgotten your password, click "cancel", then "Reset
My Password."'))
)));
but i don't know where should i add something like this: 'required' => 'You must write your e-mail').
Any idea?
Sf 1.4
Javi