aboutsummaryrefslogtreecommitdiff
path: root/views/rss/layout
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-20 21:02:38 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-20 21:02:38 +0000
commitae6bea4b0b40a94edb0c5271d279f3bdcca6a0c1 (patch)
treed02e5cfeb092620cc71e1960b99639fed4795419 /views/rss/layout
parent21f41d24e2fad631499ab80950e4d9a1e22bcca0 (diff)
downloadelgg-ae6bea4b0b40a94edb0c5271d279f3bdcca6a0c1.tar.gz
elgg-ae6bea4b0b40a94edb0c5271d279f3bdcca6a0c1.tar.bz2
Refs #3197 fixed layout views for RSS viewtype
git-svn-id: http://code.elgg.org/elgg/trunk@8785 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/rss/layout')
-rw-r--r--views/rss/layout/objects/image_block.php7
-rw-r--r--views/rss/layout/objects/list.php14
-rw-r--r--views/rss/layout/shells/default.php5
3 files changed, 0 insertions, 26 deletions
diff --git a/views/rss/layout/objects/image_block.php b/views/rss/layout/objects/image_block.php
deleted file mode 100644
index ff94bcff2..000000000
--- a/views/rss/layout/objects/image_block.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-/**
- * RSS image block view
- *
- * Only display the body
- */
-echo $vars['body']; \ No newline at end of file
diff --git a/views/rss/layout/objects/list.php b/views/rss/layout/objects/list.php
deleted file mode 100644
index 2650fc006..000000000
--- a/views/rss/layout/objects/list.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-/**
- * RSS list view
- *
- * @uses $vars['items']
- */
-
-$items = $vars['items'];
-
-if (is_array($items) && sizeof($items) > 0) {
- foreach ($items as $item) {
- echo elgg_view_list_item($item, $vars);
- }
-} \ No newline at end of file
diff --git a/views/rss/layout/shells/default.php b/views/rss/layout/shells/default.php
deleted file mode 100644
index 7f3ddebbd..000000000
--- a/views/rss/layout/shells/default.php
+++ /dev/null
@@ -1,5 +0,0 @@
-<?php
-/**
- * RSS layout shell
- */
-echo $vars['content']; \ No newline at end of file