summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2007-04-09 00:00:38 +0000
committerwjames5 <will@tekimaki.com>2007-04-09 00:00:38 +0000
commit02f1c8f4488e4e47c46f4e49f148c33bbdce9821 (patch)
tree9411a436b5df9811ca2dfccf354f4fb7c3ae9147 /modules
parent6ea3c29e7ac366b9919691aedea176f9ca682b6b (diff)
downloadrss-02f1c8f4488e4e47c46f4e49f148c33bbdce9821.tar.gz
rss-02f1c8f4488e4e47c46f4e49f148c33bbdce9821.tar.bz2
rss-02f1c8f4488e4e47c46f4e49f148c33bbdce9821.zip
remove escape on links - double parse bug
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_rss_feed.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_rss_feed.tpl b/modules/mod_rss_feed.tpl
index 7818462..9d67cfd 100644
--- a/modules/mod_rss_feed.tpl
+++ b/modules/mod_rss_feed.tpl
@@ -4,7 +4,7 @@
<ul class="rss">
{section name=ix loop=$modRSSItems}
<li class="{cycle values="odd,even"}">
- <div class="title"><a href="{$modRSSItems[ix].link|escape:"url"}">{$modRSSItems[ix].title}</a></div>
+ <div class="title"><a href="{$modRSSItems[ix].link}">{$modRSSItems[ix].title}</a></div>
<div class="date">{$modRSSItems[ix].pubdate}
<br />
{if $modRSSItems[ix].author}by {$modRSSItems[ix].author}{/if}</div>