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/comments/add.php | |
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/comments/add.php')
-rw-r--r-- | actions/comments/add.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actions/comments/add.php b/actions/comments/add.php index 434342656..67429f033 100644 --- a/actions/comments/add.php +++ b/actions/comments/add.php @@ -9,7 +9,6 @@ // Make sure we're logged in; forward to the front page if not gatekeeper(); -action_gatekeeper(); // Get input $entity_guid = (int) get_input('entity_guid'); @@ -66,4 +65,4 @@ system_message(elgg_echo("generic_comment:posted")); add_to_river('annotation/annotate','comment',$user->guid,$entity->guid, "", 0, $annotation); // Forward to the entity page -forward($entity->getURL());
\ No newline at end of file +forward($entity->getURL()); |