938 Posts in 271 Topics by 291 members
Forum Module
SilverStripe Forums » Forum Module » ConfirmedPasswordField sets password to empty
Discuss the Forum Module.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 246 Views |
-
ConfirmedPasswordField sets password to empty

4 January 2013 at 11:09pm Last edited: 4 January 2013 11:10pm
I am using the forum module on 3.0.3, and am customizing the memberprofile form. What I want is for a user's password to be unchanged if the password field is left empty. (In the default form, you have to fill out your password twice every time you want to update something in your profile.)
So, I'm using the following code:
...
public function updateForumFields(FieldList $fieldset) {$member = Member::currentUser();
if($member){
// Make filling out password optional for existing members (
$fieldset->removeByName('Password');
$fieldset->push( $pw = new ConfirmedPasswordField("Password", "Wachtwoord", null, null, $showOnClick = true, "Bevestig wachtwoord") );
}
return $fieldset;}
This is producing a collapsible ConfirmedPasswordField ('Click link to change password'). But, the password still gets updated (to an empty string) even when a user hasn't edited/updated the password fields.
Should I be checking for an empty password by hand somewhere in doSave()? Right now, the updating routine just consists of:
$form->saveInto($member);
$member->write();
| 246 Views | ||
|
Page:
1
|
Go to Top |

