diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-14 17:05:15 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-05-14 17:05:15 +0000 |
commit | 5a2ff4a25cf57cdc62c2847df5197f4d5ef9cc6b (patch) | |
tree | c3f3d76fc66e59352133124dfa67c913c23dc605 /views/rss/pageshells/pageshell.php | |
parent | 9e1ff71a0ffd0036ad3586be397d77034384b3e2 (diff) | |
download | elgg-5a2ff4a25cf57cdc62c2847df5197f4d5ef9cc6b.tar.gz elgg-5a2ff4a25cf57cdc62c2847df5197f4d5ef9cc6b.tar.bz2 |
Closes #1024: Added call to views which allow extensions to be made.
git-svn-id: https://code.elgg.org/elgg/trunk@3291 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/rss/pageshells/pageshell.php')
-rw-r--r-- | views/rss/pageshells/pageshell.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/views/rss/pageshells/pageshell.php b/views/rss/pageshells/pageshell.php index 27ada7ab3..de0327968 100644 --- a/views/rss/pageshells/pageshell.php +++ b/views/rss/pageshells/pageshell.php @@ -32,10 +32,11 @@ ?> -<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> +<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" <?php echo elgg_view('extensions/xmlns'); ?> > <channel xml:base=''> <title><![CDATA[<?php echo $title; ?>]]></title> <link><?php echo htmlentities($url); ?></link> + <?php echo elgg_view('extensions/channel'); ?> <?php echo $vars['body']; |