diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-27 13:45:20 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-27 13:45:20 +0000 |
commit | b8774c56edb22840530c6f2ddcbe2f2022a417d1 (patch) | |
tree | dcca0992744a46df9a3dbf597ce2b8febe8dc4d0 /mod/groups/actions/addtogroup.php | |
parent | e658fb3a978e40653d72ef33549177c87cb714ce (diff) | |
download | elgg-b8774c56edb22840530c6f2ddcbe2f2022a417d1.tar.gz elgg-b8774c56edb22840530c6f2ddcbe2f2022a417d1.tar.bz2 |
Join request management added.
git-svn-id: https://code.elgg.org/elgg/trunk@2980 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/addtogroup.php')
-rw-r--r-- | mod/groups/actions/addtogroup.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/groups/actions/addtogroup.php b/mod/groups/actions/addtogroup.php index a34f5d48c..97f10aef2 100644 --- a/mod/groups/actions/addtogroup.php +++ b/mod/groups/actions/addtogroup.php @@ -44,7 +44,9 @@ // Remove relationships remove_entity_relationship($group->guid, 'invited', $user->guid); remove_entity_relationship($user->guid, 'membership_request', $group->guid); - +
+ add_entity_relationship($user->guid, 'member', $group->guid);
+ // send welcome email notify_user($user->getGUID(), $group->owner_guid, sprintf(elgg_echo('groups:welcome:subject'), $group->name), |