diff options
author | Cash Costello <cash.costello@gmail.com> | 2010-04-30 14:39:03 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2010-04-30 14:39:03 +0000 |
commit | e3d33b1275020758f887e0bba9378c9bc1823ad0 (patch) | |
tree | 5676876b26a3e49d3835fdb4457bbcf2e82f8067 /views | |
parent | f037a597462f6c97fc6aba5dabcbf3eb753763e6 (diff) | |
download | elgg-e3d33b1275020758f887e0bba9378c9bc1823ad0.tar.gz elgg-e3d33b1275020758f887e0bba9378c9bc1823ad0.tar.bz2 |
fixed bug with album RSS titles
Diffstat (limited to 'views')
-rw-r--r-- | views/rss/object/album.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php index 9c037b20f..8542b95f4 100644 --- a/views/rss/object/album.php +++ b/views/rss/object/album.php @@ -10,7 +10,7 @@ if (get_context() == "search" && get_input('search_viewtype') == "gallery") { <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 $$vars['entity']->title; ?>]]></title> + <title><![CDATA[<?php echo $vars['entity']->title; ?>]]></title> <description><![CDATA[<?php echo (autop($vars['entity']->description)); ?>]]></description> </item> |