diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-03-24 20:45:14 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-03-24 20:45:14 +0100 |
commit | b778f15e3931ababa5c512bbeb10eeccd67a6bc7 (patch) | |
tree | e23fcbf31add34533f3c54b504214f9678c2d7fb | |
parent | acb6432d3c77235b7b695f9a0662a546e5ce6b13 (diff) |
Bugfix
Diffstat (limited to '')
-rwxr-xr-x | blogthon.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 86becbe..3d34323 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -127,7 +127,7 @@ if feed_display == "atom": title_md5sum_5 = title_md5sum[20:32] print ' <title>' + title + '</title>' - print ' <link href="' + blog_url + "/>' + print ' <link href="' + blog_url + '"/>' print ' <id>urn:uuid:' + title_md5sum_1 + '-' + title_md5sum_2 + '-' + title_md5sum_3 + '-' + title_md5sum_4 + '-' + title_md5sum_5 + '</id>' print ' <updated>' + str(date[0]) + '-' + str(date[1]) + '-' + str(date[2]) + 'T' + str(date[3]) + ':' + str(date[4]) + ':' + str(date[5]) + 'Z</updated>' print ' </entry>' |