diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 13:07:09 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-04 13:07:09 +0000 |
commit | 9bb7b4c8afddc734adfd2717d766d1711cf8127c (patch) | |
tree | 0140067d3c0f32ad29f5e379b9c9a5d86d1a7969 /views/default/annotation/latest_comments.php | |
parent | 4e80e365f054dea55bd481cbebd7af5fed7bb288 (diff) | |
download | elgg-9bb7b4c8afddc734adfd2717d766d1711cf8127c.tar.gz elgg-9bb7b4c8afddc734adfd2717d766d1711cf8127c.tar.bz2 |
blog sidebar html updates finished - uses modules!
git-svn-id: http://code.elgg.org/elgg/trunk@7526 36083f99-b078-4883-b0ff-0f9b5a30f544
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 |