aboutsummaryrefslogtreecommitdiff
path: root/friends/index.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-16 02:33:55 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-16 02:33:55 +0000
commit17c17807cc0b63d322d56acfae4f30399041cdb5 (patch)
treefe780bd74f828ab2fc9c107c0bb390f3a18b74c4 /friends/index.php
parent721763663962364485e5a9958854a6311f32298b (diff)
downloadelgg-17c17807cc0b63d322d56acfae4f30399041cdb5.tar.gz
elgg-17c17807cc0b63d322d56acfae4f30399041cdb5.tar.bz2
Standardized files
git-svn-id: http://code.elgg.org/elgg/trunk@3553 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends/index.php')
-rw-r--r--friends/index.php41
1 files changed, 18 insertions, 23 deletions
diff --git a/friends/index.php b/friends/index.php
index f2e3d60be..56df278ad 100644
--- a/friends/index.php
+++ b/friends/index.php
@@ -1,27 +1,22 @@
<?php
+/**
+ * Elgg friends page
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg friends page
- *
- * @package Elgg
- * @subpackage Core
+if (!$owner = page_owner_entity()) {
+ gatekeeper();
+ set_page_owner($_SESSION['user']->getGUID());
+ $owner = $_SESSION['user'];
+}
+$friends = sprintf(elgg_echo("friends:owned"),$owner->name);
- * @author Curverider Ltd
+$area1 = elgg_view_title($friends);
+$area2 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','',0,10,false);
+$body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
- * @link http://elgg.org/
- */
-
- if (!$owner = page_owner_entity()) {
- gatekeeper();
- set_page_owner($_SESSION['user']->getGUID());
- $owner = $_SESSION['user'];
- }
- $friends = sprintf(elgg_echo("friends:owned"),$owner->name);
-
- $area1 = elgg_view_title($friends);
- $area2 = list_entities_from_relationship('friend',$owner->getGUID(),false,'user','',0,10,false);
- $body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
-
- page_draw($friends, $body);
-
-?>
+page_draw($friends, $body);