summaryrefslogtreecommitdiff
path: root/templates/rss.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/rss.tpl')
-rw-r--r--templates/rss.tpl6
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/rss.tpl b/templates/rss.tpl
index f95a462..03ea30b 100644
--- a/templates/rss.tpl
+++ b/templates/rss.tpl
@@ -1,16 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
- <title>{$user}'s timeline</title>
+ <title>{$feedTitle}</title>
<link>https://twitter.com/{$user}</link>
<lastBuildDate>{$cacheTime|date_format:"D, d M Y H:i:s O"}</lastBuildDate>
{foreach from=$content item=item}
<item>
<title>{$item->text|escape}</title>
<link>https://twitter.com/{$user}/status/{$item->id_str}</link>
- {if isset($item->user)}
- <guid>http://emkael.info/tulz/twitterRSS/{$item->user->id_str}/{$item->id_str}</guid>
- {/if}
+ <guid>{$feedID}/{$item->id_str}</guid>
<description><![CDATA[ {$item->text|escape} ]]></description>
<pubDate>{$item->created_at|date_format:"D, d M Y H:i:s O"}</pubDate>
</item>