diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-07-12 10:56:31 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-07-12 10:56:31 +0200 |
commit | 620353422308d99f7f3cd54167166b27a613711b (patch) | |
tree | 2b0e9dbedb3ebec78df24a6c1a17f6d76895d54b /blogthon.cgi | |
parent | 7c912c0dcd9942db1c026137e471be557ffd80f7 (diff) |
Small RSS fix
Diffstat (limited to '')
-rwxr-xr-x | blogthon.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index c354e8c..41359a2 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -239,11 +239,13 @@ elif feed_display == "rss": print ' <title>' + blog_title + '</title>' print ' <link>' + blog_url + '</link>' print ' <description>' + blog_subtitle + '</description>' - print ' <pubDate>' + date + '<pubDate>' + # TODO: Format like: "Tue, 8 Jul 2008 2:43:19" + #print ' <pubDate>' + date + '<pubDate>' print '' print ' <item>' print ' <title>' + title + '</title>' print ' <link>' + blog_url + '</link>' + print ' <guid>' + title_md5sum + '</guid>' print ' </item>' print ' </channel>' print '</rss>' |