diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-24 15:04:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-04-24 15:04:16 +0000 |
commit | d15ea4a9c136cb1a455fbddf88fae3aaa228bbcb (patch) | |
tree | f4dc2334c676b7b5ef2378818b722cc232d2c2af /mod/groups/actions | |
parent | 228dedb767db77cd220bc5863c125aec1aa93f06 (diff) | |
download | elgg-d15ea4a9c136cb1a455fbddf88fae3aaa228bbcb.tar.gz elgg-d15ea4a9c136cb1a455fbddf88fae3aaa228bbcb.tar.bz2 |
Added security token to group edit form
git-svn-id: https://code.elgg.org/elgg/trunk@3236 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions')
-rw-r--r-- | mod/groups/actions/edit.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/groups/actions/edit.php b/mod/groups/actions/edit.php index be8d250da..86c145f49 100644 --- a/mod/groups/actions/edit.php +++ b/mod/groups/actions/edit.php @@ -10,7 +10,9 @@ */
// Load configuration
- global $CONFIG;
+ global $CONFIG; + + action_gatekeeper();
// Get group fields
$input = array();
|