if parameters are not 0, null then limit will be PROFILES_PER_PAGE

If you look at classes/User_group.php on line 412 in the current code, you can see that a call to $profile->getGroups() is made. This implies getGroups($offset=0, $limit=PROFILES_PER_PAGE) only giving a limited amount of groups.

This means only the first 20 groups in an ascending numerical order by locally stored User_group->id will be addressable with the bangtag syntax.

I solved this by making the getGroups() call to the same one made in Profile->isMember(), i.e. $profile->getGroups(0, null);
This commit is contained in:
Mikael Nordfeldth 2012-08-06 11:42:32 +02:00
parent ea837cea67
commit f433f7ce77
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ class User_group extends Managed_DataObject
// Are there any matching remote groups this profile's in?
if ($profile) {
$group = $profile->getGroups();
$group = $profile->getGroups(0, null);
while ($group->fetch()) {
if ($group->nickname == $nickname) {
// @fixme is this the best way?