aboutsummaryrefslogtreecommitdiff
path: root/pages/friends/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/friends/index.php')
-rw-r--r--pages/friends/index.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/pages/friends/index.php b/pages/friends/index.php
index 916f248d9..13799e973 100644
--- a/pages/friends/index.php
+++ b/pages/friends/index.php
@@ -17,7 +17,14 @@ $title = elgg_echo("friends:owned", array($owner->name));
$content = elgg_view_title($title);
-$content .= list_entities_from_relationship('friend', $owner->getGUID(), FALSE, 'user', '', 0, 10, FALSE);
+$options = array(
+ 'relationship' => 'friend',
+ 'relationship_guid' => $owner->getGUID(),
+ 'inverse_relationship' => FALSE,
+ 'type' => 'user',
+ 'full_view' => FALSE
+);
+$content .= elgg_list_entities_from_relationship($options);
$body = elgg_view_layout('one_column_with_sidebar', array('content' => $content));