Closed (fixed)
Project:
Subgroups for Organic groups
Version:
5.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Jul 2007 at 10:17 UTC
Updated:
1 Apr 2008 at 02:32 UTC
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
Comment #1
nath commentedIf one wants to show all members including those of subgroups, your change is indeed correct.
Comment #2
ezra-g commented@cgfoz: Are you familiar with creating patches (http://drupal.org/patch)? Creating a patch would expedite testing and commits for this issue. Thanks!
Comment #3
ezra-g commentedAlso, can you specify what's wrong with the display on this page?
Comment #4
ezra-g commentedIt looks like this went in a while ago. Perhaps swood committed the change.
Comment #5
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.