aboutsummaryrefslogtreecommitdiff
path: root/friends/collections.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-15 22:40:00 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-10-15 22:40:00 +0000
commit35ecb0f617d5a24eb7ed3e767cf323ef959a188f (patch)
tree7310883948e3a4b2df271c0a14fa846b24809cba /friends/collections.php
parent6c45ead6c42592479c020efa640b8b3317e77b5a (diff)
downloadelgg-35ecb0f617d5a24eb7ed3e767cf323ef959a188f.tar.gz
elgg-35ecb0f617d5a24eb7ed3e767cf323ef959a188f.tar.bz2
Standardized files.
git-svn-id: http://code.elgg.org/elgg/trunk@3551 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'friends/collections.php')
-rw-r--r--friends/collections.php40
1 files changed, 18 insertions, 22 deletions
diff --git a/friends/collections.php b/friends/collections.php
index 6c023f005..bc62e0905 100644
--- a/friends/collections.php
+++ b/friends/collections.php
@@ -1,28 +1,24 @@
<?php
+/**
+ * Elgg collections of friends
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- /**
- * Elgg collections of friends
- *
- * @package Elgg
- * @subpackage Core
+// Start engine
+require_once(dirname(dirname((__FILE__))) . "/engine/start.php");
- * @author Curverider Ltd
+// You need to be logged in for this one
+gatekeeper();
- * @link http://elgg.org/
- */
+$area2 = elgg_view_access_collections($_SESSION['user']->getGUID());
- // Start engine
- require_once(dirname(dirname((__FILE__))) . "/engine/start.php");
-
- // You need to be logged in for this one
- gatekeeper();
-
- $area2 = elgg_view_access_collections($_SESSION['user']->getGUID());
-
- // Format page
- $body = elgg_view_layout('two_column_left_sidebar', '', elgg_view_title(elgg_echo('friends:collections')) . $area2);
-
- // Draw it
- page_draw(elgg_echo('friends:collections'),$body);
+// Format page
+$body = elgg_view_layout('two_column_left_sidebar', '',
+ elgg_view_title(elgg_echo('friends:collections')) . $area2);
-?> \ No newline at end of file
+// Draw it
+page_draw(elgg_echo('friends:collections'),$body); \ No newline at end of file