diff options
author | Cash Costello <cash.costello@gmail.com> | 2013-02-21 07:55:27 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2013-02-21 07:55:27 -0500 |
commit | c42e0a6f66c013ba971be6ff8eed2efe1749d225 (patch) | |
tree | f0b7c9a4e62200d323782478fd0483751e157d1f /mod/groups/actions | |
parent | ccd5b06ab74060bf3ec1fa669b4501d36c480619 (diff) | |
download | elgg-c42e0a6f66c013ba971be6ff8eed2efe1749d225.tar.gz elgg-c42e0a6f66c013ba971be6ff8eed2efe1749d225.tar.bz2 |
Fixes #4953 updates group access list when name changed
Diffstat (limited to 'mod/groups/actions')
-rw-r--r-- | mod/groups/actions/groups/edit.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mod/groups/actions/groups/edit.php b/mod/groups/actions/groups/edit.php index d0689be2e..632a6412b 100644 --- a/mod/groups/actions/groups/edit.php +++ b/mod/groups/actions/groups/edit.php @@ -54,6 +54,18 @@ if ($group_guid && !$group->canEdit()) { // Assume we can edit or this is a new group if (sizeof($input) > 0) { foreach($input as $shortname => $value) { + // update access collection name ig group name changes + if (!$is_new_group && $shortname == 'name' && $value != $group->name) { + $ac_name = elgg_echo('groups:group') . ": " . $group->name; + $acl = get_access_collection($group->group_acl); + if ($acl) { + // @todo Elgg api does not support updating access collection name + $db_prefix = elgg_get_config('dbprefix'); + $query = "UPDATE {$db_prefix}access_collections SET name = '$ac_name'"; + update_data($query); + } + } + $group->$shortname = $value; } } |