aboutsummaryrefslogtreecommitdiff
path: root/views/default/page/elements/comments.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/page/elements/comments.php')
-rw-r--r--views/default/page/elements/comments.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/views/default/page/elements/comments.php b/views/default/page/elements/comments.php
index 3d44f5785..97cb9574e 100644
--- a/views/default/page/elements/comments.php
+++ b/views/default/page/elements/comments.php
@@ -5,19 +5,25 @@
* @uses $vars['entity'] ElggEntity
* @uses $vars['show_add_form'] Display add form or not
* @uses $vars['id'] Optional id for the div
+ * @uses $vars['class'] Optional additional class for the div
*/
$show_add_form = elgg_extract('show_add_form', $vars, true);
$id = '';
if (isset($vars['id'])) {
- $id = "id =\"{$vars['id']}\"";
+ $id = "id=\"{$vars['id']}\"";
+}
+
+$class = 'elgg-comments';
+if (isset($vars['class'])) {
+ $class = "$class {$vars['class']}";
}
// work around for deprecation code in elgg_view()
unset($vars['internalid']);
-echo "<div $id class=\"elgg-comments\">";
+echo "<div $id class=\"$class\">";
$options = array(
'guid' => $vars['entity']->getGUID(),
@@ -25,14 +31,12 @@ $options = array(
);
$html = elgg_list_annotations($options);
if ($html) {
- echo '<h3>Comments</h3>';
+ echo '<h3>' . elgg_echo('comments') . '</h3>';
echo $html;
}
-//echo strlen($html);
if ($show_add_form) {
- $form_vars = array('name' => 'elgg_add_comment');
- echo elgg_view_form('comments/add', $form_vars, $vars);
+ echo elgg_view_form('comments/add', array(), $vars);
}
echo '</div>';