diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-07 12:02:48 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-07 12:02:48 +0000 |
commit | 3361c73a30ff20eae69a736dab0f9bc573cb540a (patch) | |
tree | a4ea21675b91d68db83f6b98d7efb0f756b6fd1e /mod/groups/start.php | |
parent | 42e7211d7bf482a1d37e5cc561b5a97f881de0b5 (diff) | |
download | elgg-3361c73a30ff20eae69a736dab0f9bc573cb540a.tar.gz elgg-3361c73a30ff20eae69a736dab0f9bc573cb540a.tar.bz2 |
Closes #843: Introducing intermediary invite action to establish invite relationship but ask a user to join
git-svn-id: https://code.elgg.org/elgg/trunk@3124 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/start.php')
-rw-r--r-- | mod/groups/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/groups/start.php b/mod/groups/start.php index e8ef1af11..29f96785d 100644 --- a/mod/groups/start.php +++ b/mod/groups/start.php @@ -46,7 +46,8 @@ register_action("groups/leave",false, $CONFIG->pluginspath . "groups/actions/leave.php");
register_action("groups/joinrequest",false, $CONFIG->pluginspath . "groups/actions/joinrequest.php");
register_action("groups/killrequest",false,$CONFIG->pluginspath . "groups/actions/groupskillrequest.php");
- register_action("groups/addtogroup",false, $CONFIG->pluginspath . "groups/actions/addtogroup.php");
+ register_action("groups/addtogroup",false, $CONFIG->pluginspath . "groups/actions/addtogroup.php"); + register_action("groups/invite",false, $CONFIG->pluginspath . "groups/actions/invite.php");
// Use group widgets
use_widgets('groups');
|