diff options
author | cash <cash.costello@gmail.com> | 2013-03-12 13:00:15 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2013-03-12 13:00:15 -0400 |
commit | c33f667ac5bcd531d274c891a1c5e14f7505d5f6 (patch) | |
tree | b65baac5c763c9a4be8fbbf73754e1d17524e0e6 /mod/groups/views/default/forms | |
parent | 648cc5da8f89be53408ce28970da78cb29888276 (diff) | |
download | elgg-c33f667ac5bcd531d274c891a1c5e14f7505d5f6.tar.gz elgg-c33f667ac5bcd531d274c891a1c5e14f7505d5f6.tar.bz2 |
Fixes #5226 passing options through egefr
Diffstat (limited to 'mod/groups/views/default/forms')
-rw-r--r-- | mod/groups/views/default/forms/groups/edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/views/default/forms/groups/edit.php b/mod/groups/views/default/forms/groups/edit.php index b2860b225..e2dc5455a 100644 --- a/mod/groups/views/default/forms/groups/edit.php +++ b/mod/groups/views/default/forms/groups/edit.php @@ -101,7 +101,7 @@ if ($entity && ($owner_guid == elgg_get_logged_in_user_guid() || elgg_is_admin_l 'limit' => 0, ); - $batch = new ElggBatch('elgg_get_entities', $options); + $batch = new ElggBatch('elgg_get_entities_from_relationship', $options); foreach ($batch as $member) { $members[$member->guid] = "$member->name (@$member->username)"; } |