Model password confirmation field.

Comparing #2 with #3

Revision #3 was created by oatcpe oatcpe on May 21, 2012, 8:39:31 AM.

correct medel senario on 'update'

Content

[...]
{
// NOTE: you should only define rules for those attributes that
// will receive user inputs.
return array(
//password and repeat password
array('password, repeat_password', 'required', 'on'=>'
resetPasswordupdate, insert'),
array('password, repeat_password', 'length', 'min'=>6, 'max'=>40),
array('password', 'compare', 'compareAttribute'=>'repeat_password'),

);
}
[...]