View Single Post
  #6 (permalink)  
Old 08-30-2008, 09:17 PM
rbevers rbevers is offline
Junior Member
 
Join Date: Aug 2008
Posts: 1
Default

Hi,

I ran into the same problems. I tried to fix it like this

PHP Code:
$password2        = new Zend_Form_Element_Password('password2');
$password2->setLabel('Repeat password')
            ->
setRequired(true)
            ->
addValidator(new Zend_Validate_Identical($_POST['password'])); 

This seems to work just fine, at least for me.
Reply With Quote