diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-19 14:36:36 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-06-19 14:36:36 +0000 |
commit | be4ed8d5d6bf5f021bd655153d04303f7c09f44d (patch) | |
tree | 19e7ec2cf8dd2d062f15311c94bd0c7c12879cc7 /mod/groups/actions | |
parent | 6a467a7653d1f6edb810e7f680b8001022c54228 (diff) | |
download | elgg-be4ed8d5d6bf5f021bd655153d04303f7c09f44d.tar.gz elgg-be4ed8d5d6bf5f021bd655153d04303f7c09f44d.tar.bz2 |
Fixed broken join action for closed groups - encoding issue on forward URL
git-svn-id: http://code.elgg.org/elgg/trunk@6522 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions')
-rw-r--r-- | mod/groups/actions/join.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/actions/join.php b/mod/groups/actions/join.php index 3947f8efc..423f108fd 100644 --- a/mod/groups/actions/join.php +++ b/mod/groups/actions/join.php @@ -53,7 +53,7 @@ { // Closed group, request membership system_message(elgg_echo('groups:privategroup')); - forward(elgg_add_action_tokens_to_url($CONFIG->url . "action/groups/joinrequest?user_guid=$user_guid&group_guid=$group_guid")); + forward(elgg_add_action_tokens_to_url($CONFIG->url . "action/groups/joinrequest?user_guid=$user_guid&group_guid=$group_guid", FALSE)); exit; } } |