If there are no account purposes - the form is still shown on the user registration form. The logic needs to be changed:
line 101
if (!empty($rolesets)) {
should be
if (count($rolesets) > 1) {
If there are no account purposes - the form is still shown on the user registration form. The logic needs to be changed:
line 101
if (!empty($rolesets)) {
should be
if (count($rolesets) > 1) {
Comments
Comment #1
usonian commentedFixed for the DRUPAL-5 branch. Thanks, jpsalter.
Comment #2
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.