aboutsummaryrefslogtreecommitdiff
path: root/mod/externalpages/views/default/expages/front_left.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/externalpages/views/default/expages/front_left.php')
-rw-r--r--mod/externalpages/views/default/expages/front_left.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/mod/externalpages/views/default/expages/front_left.php b/mod/externalpages/views/default/expages/front_left.php
deleted file mode 100644
index 14d999ead..000000000
--- a/mod/externalpages/views/default/expages/front_left.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
- /**
- * Elgg Frontpage left
- *
- * @package ElggExpages
- *
- */
-
-
- //get frontpage right code
- $contents = elgg_get_entities(array('type' => 'object', 'subtype' => 'front', 'limit' => 1));
-
- if($contents){
- foreach($contents as $c){
- echo $c->title; // title is the left hand content
- }
- }else{
- echo "<p>" . elgg_echo("expages:addcontent") . "</p>";
- }
-
-?>
-