diff options
Diffstat (limited to 'views/rss')
-rw-r--r-- | views/rss/object/album.php | 1 | ||||
-rw-r--r-- | views/rss/object/file.php | 18 | ||||
-rw-r--r-- | views/rss/tidypics/gallery.php | 8 |
3 files changed, 12 insertions, 15 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php index 8542b95f4..34cf58395 100644 --- a/views/rss/object/album.php +++ b/views/rss/object/album.php @@ -51,4 +51,3 @@ if (get_context() == "search" && get_input('search_viewtype') == "gallery") { } } -?>
\ No newline at end of file diff --git a/views/rss/object/file.php b/views/rss/object/file.php index 36740f003..1ede661ad 100644 --- a/views/rss/object/file.php +++ b/views/rss/object/file.php @@ -1,16 +1,16 @@ <?php - /** - * Tidypics RSS file object view - need to look into removing download link based on settings - */ +/** + * 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 .= " ..."; +$title = $vars['entity']->title; +if (empty($title)) { + $title = substr($vars['entity']->description,0,32); + if (strlen($vars['entity']->description) > 32) { + $title .= " ..."; } - +} ?> <item> diff --git a/views/rss/tidypics/gallery.php b/views/rss/tidypics/gallery.php index 2c285fca5..0e90a8c44 100644 --- a/views/rss/tidypics/gallery.php +++ b/views/rss/tidypics/gallery.php @@ -1,7 +1,7 @@ <?php - /** - * Tidypics Listing RSS View - */ +/** + * Tidypics Listing RSS View + */ $context = $vars['context']; $entities = $vars['entities']; @@ -14,5 +14,3 @@ if (is_array($entities) && sizeof($entities) > 0) { echo elgg_view_entity($entity); } } - -?>
\ No newline at end of file |