diff options
Diffstat (limited to 'views/default/annotation/latest_comments.php')
-rw-r--r-- | views/default/annotation/latest_comments.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/views/default/annotation/latest_comments.php b/views/default/annotation/latest_comments.php index a43ec4fee..d603a3830 100644 --- a/views/default/annotation/latest_comments.php +++ b/views/default/annotation/latest_comments.php @@ -1,12 +1,12 @@ <?php /** * Display latest comments on objects - **/ + */ -if($vars['comments']){ +if ($vars['comments']){ global $CONFIG; - echo "<h3>" . elgg_echo('generic_comments:latest') . "</h3>"; - foreach($vars['comments'] as $comment){ + //echo "<h3>" . elgg_echo('generic_comments:latest') . "</h3>"; + foreach ($vars['comments'] as $comment) { //grab the entity the comment is on $entity = get_entity($comment->entity_guid); //comment owner |