diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/comments/add.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/actions/comments/add.php b/actions/comments/add.php index 1202a30ec..ea3b0326e 100644 --- a/actions/comments/add.php +++ b/actions/comments/add.php @@ -11,7 +11,7 @@ */
// Make sure we're logged in; forward to the front page if not
- gatekeeper(); + gatekeeper();
action_gatekeeper();
// Get input
@@ -38,6 +38,9 @@ );
system_message(elgg_echo("generic_comment:posted"));
+ //add to river
+ add_to_river('annotation/annotate','comment',$_SESSION['user']->guid,$entity->guid);
+
} else {
register_error(elgg_echo("generic_comment:failure"));
|