Hi.
The module wouldn't work for me until I replaced the lines (~ line 46)
foreach (module_list() as $module) {
module_invoke($module, 'user', 'view', array(), $user);
}
with
$empty_array = array();
user_module_invoke('view', $empty_array, $user);
Regards,
Nigel
Comments
Comment #1
MBroberg commentedWorked for me - thanks!
Comment #2
scooper commentedI also required this revision for PHP 5.3. Without it, no checkboxes were displayed.
Thanks for sharing this!