diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-27 11:25:31 +0000 |
commit | 41fed2568509d6eb581be9aa1df000b25b079d63 (patch) | |
tree | f318c78f1337d944a0aaf4798db17b5ebf4c30fc /friends | |
parent | 689c997f58b25df81164df9acdf5ebd9c1ad2bc9 (diff) | |
download | elgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.gz elgg-41fed2568509d6eb581be9aa1df000b25b079d63.tar.bz2 |
Added a 'display full view' parameter to all of the listings functions
git-svn-id: https://code.elgg.org/elgg/trunk@1170 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r-- | friends/index.php | 2 | ||||
-rw-r--r-- | friends/of.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/friends/index.php b/friends/index.php index 8b5e17ef0..cde20877d 100644 --- a/friends/index.php +++ b/friends/index.php @@ -17,7 +17,7 @@ $owner = $_SESSION['user'];
}
- $area1 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','');
+ $area1 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','',0,10,false);
$body = elgg_view_layout('one_column',$area1);
echo page_draw(sprintf(elgg_echo("friends:owned"),$owner->name),$body);
diff --git a/friends/of.php b/friends/of.php index 68aa47778..702ae16ad 100644 --- a/friends/of.php +++ b/friends/of.php @@ -17,7 +17,7 @@ $owner = $_SESSION['user'];
}
- $area1 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','');
+ $area1 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','',0,10,false);
$body = elgg_view_layout('one_column',$area1);
echo page_draw(sprintf(elgg_echo("friends:of:owned"),$owner->name),$body);
|