diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/page/elements/comments.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/views/default/page/elements/comments.php b/views/default/page/elements/comments.php index 3d44f5785..1b0082ee4 100644 --- a/views/default/page/elements/comments.php +++ b/views/default/page/elements/comments.php @@ -5,6 +5,7 @@ * @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); @@ -14,10 +15,15 @@ if (isset($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(), @@ -28,7 +34,6 @@ if ($html) { echo '<h3>Comments</h3>'; echo $html; } -//echo strlen($html); if ($show_add_form) { $form_vars = array('name' => 'elgg_add_comment'); |