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

@ -7,6 +7,7 @@
- fixed #11555: Wiki subcategories entry field is not labeled
- fixed: UserList asset has SQL injection bug
- fixed #11558: wiki results for visitors
- fixed #11533: Saving entered data at registration
7.9.4
- We're shipping underscore.js now for its suite of extremely handy utility

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);
}