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

MBroberg’s picture

Worked for me - thanks!

scooper’s picture

Issue summary: View changes

I also required this revision for PHP 5.3. Without it, no checkboxes were displayed.
Thanks for sharing this!