diff options
Diffstat (limited to 'views/default/annotation/latest_comments.php')
-rw-r--r-- | views/default/annotation/latest_comments.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/views/default/annotation/latest_comments.php b/views/default/annotation/latest_comments.php index 85ddfab7b..6ab7163ed 100644 --- a/views/default/annotation/latest_comments.php +++ b/views/default/annotation/latest_comments.php @@ -5,8 +5,6 @@ if($vars['comments']){ global $CONFIG; - - echo "<div class='sidebar container'>"; echo "<h2>" . elgg_echo('latestcomments') . "</h2>"; foreach($vars['comments'] as $comment){ //grab the entity the comment is on @@ -30,10 +28,9 @@ if($vars['comments']){ $url_display = $objecttitle; } - echo "<div class='LatestComment'><span class='generic_comment_icon'>" . elgg_view("profile/icon",array('entity' => $comment_owner, 'size' => 'tiny')) . "</span>"; + echo "<div class='latest_comment'><span class='generic_comment_icon'>" . elgg_view("profile/icon",array('entity' => $comment_owner, 'size' => 'tiny')) . "</span>"; echo "<p class='owner_timestamp'><a href=\"{$vars['url']}pg/profile/{$comment_owner->username}\">{$comment_owner->name}</a> " . elgg_echo('on') . " {$url_display} <small>{$friendlytime}</small></p>"; - echo "<div class='clearfloat'></div></div>"; + echo "</div>"; } - echo "</div>"; }
\ No newline at end of file |