diff options
Diffstat (limited to 'views/rss/pageshells/pageshell.php')
-rw-r--r-- | views/rss/pageshells/pageshell.php | 64 |
1 files changed, 30 insertions, 34 deletions
diff --git a/views/rss/pageshells/pageshell.php b/views/rss/pageshells/pageshell.php index 2abb83c5a..6faf85ead 100644 --- a/views/rss/pageshells/pageshell.php +++ b/views/rss/pageshells/pageshell.php @@ -1,44 +1,40 @@ <?php +/** + * Elgg RSS output pageshell + * + * @package Elgg + * @subpackage Core + * @link http://elgg.org/ + * + */ - /** - * Elgg RSS output pageshell - * - * @package Elgg - * @subpackage Core - * @link http://elgg.org/ - * - */ +header("Content-Type: text/xml"); +echo "<?xml version='1.0'?>\n"; - header("Content-Type: text/xml"); - - echo "<?xml version='1.0'?>\n"; +// Set title +if (empty($vars['title'])) { + $title = $vars['config']->sitename; +} else if (empty($vars['config']->sitename)) { + $title = $vars['title']; +} else { + $title = $vars['config']->sitename . ": " . $vars['title']; +} - - - // Set title - if (empty($vars['title'])) { - $title = $vars['config']->sitename; - } else if (empty($vars['config']->sitename)) { - $title = $vars['title']; - } else { - $title = $vars['config']->sitename . ": " . $vars['title']; - } - - // Remove RSS from URL - $url = str_replace('?view=rss','',full_url()); - $url = str_replace('&view=rss','',full_url()); +// Remove RSS from URL +$url = str_replace('?view=rss','',full_url()); +$url = str_replace('&view=rss','',full_url()); ?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" <?php echo elgg_view('extensions/xmlns'); ?> > - <channel> - <title><![CDATA[<?php echo $title; ?>]]></title> - <link><?php echo htmlentities($url); ?></link> - <?php echo elgg_view('extensions/channel'); ?> - <?php +<channel> + <title><![CDATA[<?php echo $title; ?>]]></title> + <link><?php echo htmlentities($url); ?></link> + <?php echo elgg_view('extensions/channel'); ?> + <?php - echo $vars['body']; - - ?> - </channel> + echo $vars['body']; + + ?> +</channel> </rss>
\ No newline at end of file |