aboutsummaryrefslogtreecommitdiff
path: root/friends/of.php
diff options
context:
space:
mode:
Diffstat (limited to 'friends/of.php')
-rw-r--r--friends/of.php46
1 files changed, 23 insertions, 23 deletions
diff --git a/friends/of.php b/friends/of.php
index 4ae20dc7d..f1231750c 100644
--- a/friends/of.php
+++ b/friends/of.php
@@ -1,26 +1,26 @@
-<?php
-
- /**
- * Elgg friends of page
- *
- * @package Elgg
- * @subpackage Core
+<?php
- * @author Curverider Ltd
+ /**
+ * Elgg friends of page
+ *
+ * @package Elgg
+ * @subpackage Core
+
+ * @author Curverider Ltd
+
+ * @link http://elgg.org/
+ */
+
+ if (!$owner = page_owner_entity()) {
+ gatekeeper();
+ set_page_owner($_SESSION['user']->getGUID());
+ $owner = $_SESSION['user'];
+ }
+
+ $area1 = elgg_view_title(elgg_echo('friends:of'));
+ $area2 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','',0,10,false);
+ $body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
+
+ page_draw(sprintf(elgg_echo("friends:of:owned"),$owner->name),$body);
- * @link http://elgg.org/
- */
-
- if (!$owner = page_owner_entity()) {
- gatekeeper();
- set_page_owner($_SESSION['user']->getGUID());
- $owner = $_SESSION['user'];
- }
-
- $area1 = elgg_view_title(elgg_echo('friends:of'));
- $area2 = list_entities_from_relationship('friend',$owner->getGUID(),true,'user','',0,10,false);
- $body = elgg_view_layout('two_column_left_sidebar', '', $area1 . $area2);
-
- page_draw(sprintf(elgg_echo("friends:of:owned"),$owner->name),$body);
-
?> \ No newline at end of file