aboutsummaryrefslogtreecommitdiff
path: root/views/rss/object/file.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-11-26 16:35:25 -0500
committerCash Costello <cash.costello@gmail.com>2011-11-26 16:35:25 -0500
commitca5a35607dfb277cecba120ce27eece7c59f270a (patch)
tree301e5b6fb94a2521f18ce926e69e659fe4e4fa54 /views/rss/object/file.php
parent22afb49f30fc9bcd6be84f734e89a9b644f2fb0f (diff)
downloadelgg-ca5a35607dfb277cecba120ce27eece7c59f270a.tar.gz
elgg-ca5a35607dfb277cecba120ce27eece7c59f270a.tar.bz2
fixed RSS feeds for Elgg 1.8
Diffstat (limited to 'views/rss/object/file.php')
-rw-r--r--views/rss/object/file.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/views/rss/object/file.php b/views/rss/object/file.php
deleted file mode 100644
index 1ede661ad..000000000
--- a/views/rss/object/file.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-/**
- * Tidypics RSS file object view - need to look into removing download link based on settings
- */
-
-$title = $vars['entity']->title;
-if (empty($title)) {
- $title = substr($vars['entity']->description,0,32);
- if (strlen($vars['entity']->description) > 32) {
- $title .= " ...";
- }
-}
-?>
-
- <item>
- <guid isPermaLink='true'><?php echo $vars['entity']->getURL(); ?></guid>
- <pubDate><?php echo date("r",$vars['entity']->time_created) ?></pubDate>
- <link><?php echo $vars['entity']->getURL(); ?></link>
- <title><![CDATA[<?php echo $title; ?>]]></title>
- <description><![CDATA[<?php echo (autop($vars['entity']->description)); ?>]]></description>
- <enclosure url="<?php echo $vars['url']; ?>pg/photos/download/<?php echo $vars['entity']->getGUID(); ?>/" length="<?php echo $vars['entity']->size(); ?>" type="<?php echo $vars['entity']->getMimeType(); ?>" />
- </item>