aboutsummaryrefslogtreecommitdiff
path: root/views/rss/object/album/full.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/rss/object/album/full.php')
-rw-r--r--views/rss/object/album/full.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/views/rss/object/album/full.php b/views/rss/object/album/full.php
deleted file mode 100644
index b1f5a567b..000000000
--- a/views/rss/object/album/full.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * List photos in an album for RSS
- *
- * @uses $vars['entity'] TidypicsAlbum
- *
- * @author Cash Costello
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
- */
-
-$limit = (int)get_input('limit', 20);
-
-echo elgg_list_entities(array(
- 'type' => 'object',
- 'subtype' => 'image',
- 'container_guid' => $vars['entity']->getGUID(),
- 'limit' => $limit,
- 'full_view' => false,
-));