From a6db51b8398e2b70e7f8253936c3288c6df87e9d Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 1 Jan 2011 17:53:14 +0000 Subject: fixed the function for viewing latest comments git-svn-id: http://code.elgg.org/elgg/trunk@7802 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/views.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/lib') 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. -- cgit v1.2.3