aboutsummaryrefslogtreecommitdiff
path: root/friends
diff options
context:
space:
mode:
Diffstat (limited to 'friends')
-rw-r--r--friends/index.php25
-rw-r--r--friends/of.php25
2 files changed, 0 insertions, 50 deletions
diff --git a/friends/index.php b/friends/index.php
deleted file mode 100644
index cde20877d..000000000
--- a/friends/index.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
- /**
- * Elgg friends page
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
-
- if (!$owner = page_owner_entity()) {
- gatekeeper();
- set_page_owner($_SESSION['user']->getGUID());
- $owner = $_SESSION['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);
-
-?> \ No newline at end of file
diff --git a/friends/of.php b/friends/of.php
deleted file mode 100644
index 702ae16ad..000000000
--- a/friends/of.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
- /**
- * Elgg friends of page
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
-
- if (!$owner = page_owner_entity()) {
- gatekeeper();
- set_page_owner($_SESSION['user']->getGUID());
- $owner = $_SESSION['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);
-
-?> \ No newline at end of file