diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 14:09:54 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 14:09:54 +0000 |
commit | 4873cf7c4bb484ba8dfbe12e840402e3edd7c310 (patch) | |
tree | 37563567398b9029a14aa056e5a2212777f457e2 /actions/comments/add.php | |
parent | b43d13eca7331e81f108202ffe7a2dacd237bb0f (diff) | |
download | elgg-4873cf7c4bb484ba8dfbe12e840402e3edd7c310.tar.gz elgg-4873cf7c4bb484ba8dfbe12e840402e3edd7c310.tar.bz2 |
Refs #210 & #211 : Updated comments form
git-svn-id: https://code.elgg.org/elgg/trunk@1828 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/comments/add.php')
-rw-r--r-- | actions/comments/add.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/comments/add.php b/actions/comments/add.php index bdc7fd06f..e02079dbd 100644 --- a/actions/comments/add.php +++ b/actions/comments/add.php @@ -11,7 +11,8 @@ */
// Make sure we're logged in; forward to the front page if not
- if (!isloggedin()) forward();
+ gatekeeper(); + action_gatekeeper();
// Get input
$entity_guid = (int) get_input('entity_guid');
|