aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/lib/views.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php
index 878db04d8..951210f5a 100644
--- a/engine/lib/views.php
+++ b/engine/lib/views.php
@@ -1054,13 +1054,13 @@ function elgg_view_comments($entity, $add_comment = true) {
*/
function elgg_view_latest_comments($owner_guid, $type = 'object', $subtype = '', $number = 4) {
$title = elgg_echo('generic_comments:latest');
- $comments = get_annotations(0, $type, $subtype, "generic_comment", "", $owner_guid, 4, 0, "desc");
+ $comments = get_annotations(0, $type, $subtype, 'generic_comment', '', 0, $number, 0, 'desc', 0, 0, $owner_guid);
$body = elgg_view('layout/objects/list', array(
'items' => $comments,
'pagination' => false,
'list_class' => 'elgg-latest-comments',
));
- echo elgg_view('layout/objects/module', array('title' => $title, 'body' => $body));
+ return elgg_view('layout/objects/module', array('title' => $title, 'body' => $body));
}
/**
* Wrapper function for the image block display pattern.