aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/actions/forums/addtopic.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/actions/forums/addtopic.php')
-rw-r--r--mod/groups/actions/forums/addtopic.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/groups/actions/forums/addtopic.php b/mod/groups/actions/forums/addtopic.php
index 085e2196e..1bb4c0588 100644
--- a/mod/groups/actions/forums/addtopic.php
+++ b/mod/groups/actions/forums/addtopic.php
@@ -49,6 +49,8 @@
$grouptopic->access_id = $access;
// Set its title and description appropriately
$grouptopic->title = $title;
+ // Set its title and description appropriately
+ $grouptopic->description = $message;
// Before we can set metadata, we need to save the topic
if (!$grouptopic->save()) {
register_error(elgg_echo("grouptopic:error"));
@@ -60,10 +62,7 @@
}
// add metadata
$grouptopic->status = $status; // the current status i.e sticky, closed, resolved, open
-
- // now add the topic message as an annotation
- $grouptopic->annotate('group_topic_post',$message,$access, $user);
-
+
// add to river
add_to_river('river/forum/topic/create','create',$_SESSION['user']->guid,$grouptopic->guid);