aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/views')
-rw-r--r--mod/groups/views/default/river/object/groupforumtopic/create.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/groups/views/default/river/object/groupforumtopic/create.php b/mod/groups/views/default/river/object/groupforumtopic/create.php
index ca4747338..466196921 100644
--- a/mod/groups/views/default/river/object/groupforumtopic/create.php
+++ b/mod/groups/views/default/river/object/groupforumtopic/create.php
@@ -36,7 +36,7 @@ if ($excerpt) {
if (elgg_is_logged_in() && $container->canWriteToContainer()) {
// inline comment form
- echo elgg_view_form('discussion/reply/save', array(
- 'id' => "groups-reply-{$object->getGUID()}",
- ), array('entity' => $object, 'inline' => true));
+ $form_vars = array('id' => "groups-reply-{$object->getGUID()}", 'class' => 'hidden');
+ $body_vars = array('entity' => $object, 'inline' => true);
+ echo elgg_view_form('discussion/reply/save', $form_vars, $body_vars);
}