diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-04-15 12:17:20 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-04-15 12:17:20 +0200 |
commit | 197365992315409daed3768188606320781961c9 (patch) | |
tree | 97f11cd8c3705d07ff142ccb9a771b4e483a8716 | |
parent | a4fb72c0e11ae1e251f1ee8e60aec5894a822893 (diff) |
Try to use URL as guid in RSS (possible bugfix?)
-rwxr-xr-x | blogthon.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 06dab83..26296ae 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -317,7 +317,8 @@ elif feed_display == "rss": print ' <item>' print ' <title>' + title + '</title>' print ' <link>' + blog_url + '?p=' + title + '</link>' - print ' <guid>' + title_md5sum + '</guid>' + #print ' <guid>' + title_md5sum + '</guid>' + print ' <guid>' + blog_url + '?p=' + title + '</guid>' print ' <pubDate>' + date + '</pubDate>' content = open(str(entries[i][1]), 'r') rss_description= '' |