aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/pages/thewire/reply.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-06-29 06:59:42 -0400
committerCash Costello <cash.costello@gmail.com>2011-06-29 06:59:42 -0400
commit56dce72f0d61160f9d66e1529f2012415bc4b0aa (patch)
tree3380a7dd0a21f9e80a5f7bcf4bf20a4e0c1d78ec /mod/thewire/pages/thewire/reply.php
parent8ed11a8881f65339446fccae64864e0d57dfff51 (diff)
downloadelgg-56dce72f0d61160f9d66e1529f2012415bc4b0aa.tar.gz
elgg-56dce72f0d61160f9d66e1529f2012415bc4b0aa.tar.bz2
Fixes #3578 added a css class to thewire add form
Diffstat (limited to 'mod/thewire/pages/thewire/reply.php')
-rw-r--r--mod/thewire/pages/thewire/reply.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/thewire/pages/thewire/reply.php b/mod/thewire/pages/thewire/reply.php
index a3d3ea017..df4511c51 100644
--- a/mod/thewire/pages/thewire/reply.php
+++ b/mod/thewire/pages/thewire/reply.php
@@ -14,7 +14,8 @@ elgg_push_breadcrumb(elgg_echo('thewire'), 'thewire/all');
elgg_push_breadcrumb($title);
$content = elgg_view('thewire/reply', array('post' => $post));
-$content .= elgg_view_form('thewire/add', array(), array('post' => $post));
+$form_vars = array('class' => 'thewire-form');
+$content .= elgg_view_form('thewire/add', $form_vars, array('post' => $post));
$content .= elgg_view('input/urlshortener');