Persist data entered by the user in the registration form, but keep falling back to user profile field defaults if no user input is given. Fixes bug #11533.

This commit is contained in:
Colin Kuskie 2010-05-10 14:12:07 -07:00
parent f3d95f99b4
commit f3010db1b3
2 changed files with 2 additions and 1 deletions

View file

@ -242,7 +242,7 @@ sub createAccount {
$formField = $field->formField($properties, undef, undef, undef, $defaultValue);
}
else {
$formField = $field->formField($properties, undef, undef, undef, undef, undef, 'useFormDefault');
$formField = $field->formField($properties);
}