Revision #4 has been created by PashaL on Jul 4, 2012, 4:40:56 AM with the memo:
Had 'update' scenario in rules() where wiki describes instance in which password fields are required in 'insert" but not 'update' scenarios.
« previous (#3)
Changes
Title
unchanged
Model password confirmation field.
Category
unchanged
How-tos
Yii version
unchanged
Tags
unchanged
password confirm, password, confirm
Content
changed
[...]
{
// 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'=>'update, insert'),
array('password, repeat_password', 'length', 'min'=>6, 'max'=>40),
array('password', 'compare', 'compareAttribute'=>'repeat_password'),
);
}[...]