- 🇧🇪Belgium dieterholvoet Brussels
Both the 7.x release of this module and Drupal 7 are not supported anymore, so I'm closing this as won't fix.
The module is adding a roles_change
new form element to the user_account_form()
. By doing so, it breaks all other validations that other modules are trying to do against the official $form['account']['roles']
form element. For example an additional validation callback should check $form_state['values']['roles_change']
instead of $form_state['values']['roles']
which a 3rd party module would expect.
Moreover, even if a module tries to integrate with Role Delegation by applying validations against $form_state['values']['roles_change']
he might fail because even this is not consistent. When a user has administer permissions
acces, he will get the original $form_state['values']['roles']
and no $form_state['values']['roles_change']
.
Make the form consistent as keys with the original user_account_form()
. Use roles
key for roles in form.
None.
None.
None.
Closed: won't fix
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Both the 7.x release of this module and Drupal 7 are not supported anymore, so I'm closing this as won't fix.