aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/forums/deletepost.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/actions/forums/deletepost.php')
-rw-r--r--mod/groups/actions/forums/deletepost.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/groups/actions/forums/deletepost.php b/mod/groups/actions/forums/deletepost.php
index 4066b7456..14336c1fa 100644
--- a/mod/groups/actions/forums/deletepost.php
+++ b/mod/groups/actions/forums/deletepost.php
@@ -24,11 +24,14 @@
//check that the user can edit as well as admin
if ($post->canEdit() || ($post->owner_guid == $_SESSION['user']->guid)) {
- //delete
+ //delete forum comment
$post->delete();
+
+ // remove river entry if it exists
+ remove_from_river_by_annotation($post_id);
+
//display confirmation message
system_message(elgg_echo("grouppost:deleted"));
-
}
} else {