diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-21 20:19:32 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-21 20:19:32 +0000 |
commit | f8ffe33a5eb4d81d60c8ba5cc615ee49b1ea239d (patch) | |
tree | e90c061557ec081253ee0309b7aec0542c10384b /actions/friends | |
parent | 3a0c12984c54788be343a0845da506944f35cacd (diff) | |
download | elgg-f8ffe33a5eb4d81d60c8ba5cc615ee49b1ea239d.tar.gz elgg-f8ffe33a5eb4d81d60c8ba5cc615ee49b1ea239d.tar.bz2 |
Refs #1538: Removed action_gatekeeper() from action files in core.
git-svn-id: http://code.elgg.org/elgg/trunk@3960 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/friends')
-rw-r--r-- | actions/friends/add.php | 1 | ||||
-rw-r--r-- | actions/friends/addcollection.php | 1 | ||||
-rw-r--r-- | actions/friends/remove.php | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/actions/friends/add.php b/actions/friends/add.php index 3698f5887..934424b57 100644 --- a/actions/friends/add.php +++ b/actions/friends/add.php @@ -10,7 +10,6 @@ // Ensure we are logged in gatekeeper(); -action_gatekeeper(); // Get the GUID of the user to friend $friend_guid = get_input('friend'); diff --git a/actions/friends/addcollection.php b/actions/friends/addcollection.php index 6a15805ec..e5541797b 100644 --- a/actions/friends/addcollection.php +++ b/actions/friends/addcollection.php @@ -13,7 +13,6 @@ //must be logged in gatekeeper(); -action_gatekeeper(); $collection_name = get_input('collection_name'); $friends = get_input('friends_collection'); diff --git a/actions/friends/remove.php b/actions/friends/remove.php index 9969544da..768291055 100644 --- a/actions/friends/remove.php +++ b/actions/friends/remove.php @@ -10,7 +10,6 @@ // Ensure we are logged in gatekeeper(); -action_gatekeeper(); // Get the GUID of the user to friend $friend_guid = get_input('friend'); |