Looking at the code, on the members page it looks like the module is trying to show all the members of groups and its subgroups. However this does not work as expected. Due to the following line (Line 365):

 if (empty($users[$sid])) {
		  $users[$sid] = $sname;
		}

this will work as required if changed to

 if (empty($users[$sid])) {
		  $users[$sid] = $cname;
		}

Comments

nath’s picture

If one wants to show all members including those of subgroups, your change is indeed correct.

ezra-g’s picture

@cgfoz: Are you familiar with creating patches (http://drupal.org/patch)? Creating a patch would expedite testing and commits for this issue. Thanks!

ezra-g’s picture

Also, can you specify what's wrong with the display on this page?

ezra-g’s picture

Status: Active » Fixed

It looks like this went in a while ago. Perhaps swood committed the change.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.