aboutsummaryrefslogtreecommitdiff
path: root/friends
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-19 10:47:54 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-19 10:47:54 +0000
commit4e08ff9149c717f18ee7285b0508e8a1fc50503b (patch)
treefa269e3172c4acdb19b16352e98f0ff4d77a83d1 /friends
parentb84f744cfdbeb1f7bc42ed254747318d892beddc (diff)
downloadelgg-4e08ff9149c717f18ee7285b0508e8a1fc50503b.tar.gz
elgg-4e08ff9149c717f18ee7285b0508e8a1fc50503b.tar.bz2
The friends pages now use listing functions; also fixed a minor bug in the get_entities_from_relationship function.
git-svn-id: https://code.elgg.org/elgg/trunk@990 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends')
-rw-r--r--friends/index.php18
-rw-r--r--friends/of.php18
2 files changed, 6 insertions, 30 deletions
diff --git a/friends/index.php b/friends/index.php
index 6629a2fc6..8b5e17ef0 100644
--- a/friends/index.php
+++ b/friends/index.php
@@ -13,24 +13,12 @@
if (!$owner = page_owner_entity()) {
gatekeeper();
+ set_page_owner($_SESSION['user']->getGUID());
$owner = $_SESSION['user'];
}
- $offset = (int) get_input('offset');
-
- if ($friends = $owner->getFriends("",50,$offset)) {
-
- $body = elgg_view("friends/list",array('friends' => $friends));
-
- } else {
-
- if (page_owner() != $_SESSION['guid']) {
- $body = elgg_echo("friends:none");
- } else {
- $body = elgg_echo("friends:none:you");
- }
-
- }
+ $area1 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','');
+ $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 7886c6c14..68aa47778 100644
--- a/friends/of.php
+++ b/friends/of.php
@@ -13,24 +13,12 @@
if (!$owner = page_owner_entity()) {
gatekeeper();
+ set_page_owner($_SESSION['user']->getGUID());
$owner = $_SESSION['user'];
}
- $offset = (int) get_input('offset');
-
- if ($friends = $owner->getFriendsOf("",50,$offset)) {
-
- $body = elgg_view("friends/list",array('friends' => $friends));
-
- } else {
-
- if (page_owner() != $_SESSION['guid']) {
- $body = elgg_echo("friends:of:none");
- } else {
- $body = elgg_echo("friends:of:none:you");
- }
-
- }
+ $area1 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','');
+ $body = elgg_view_layout('one_column',$area1);
echo page_draw(sprintf(elgg_echo("friends:of:owned"),$owner->name),$body);