- 🇧🇪Belgium dieterholvoet Brussels
The Drupal 7 release of this module and Drupal 7 itself are unsupported. Feel free to reopen this issue if it is still relevant on the latest release of the module.
Installing latest 1.x-dev (March 25) I've got this error
(Notice: Undefined index: #type in _required_by_role_set_property() (line 99 of /sites/all/modules/required_by_role/required_by_role.module).
I give a look at code and I think modifying the line #99
if ($element['#type'] == 'select') {
into
if (isset($element['#type']) && $element['#type'] == 'select') {
solve the issue
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.
The Drupal 7 release of this module and Drupal 7 itself are unsupported. Feel free to reopen this issue if it is still relevant on the latest release of the module.