diff options
author | Stefan Ritter <xeno@thehappy.de> | 2009-03-03 13:53:31 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2009-03-03 13:53:31 +0100 |
commit | b964989fcef583532980956bb119782d3f95b64b (patch) | |
tree | 20ec9a55a4e288ee8c2ec8815768cab876b76963 /blogthon.cgi | |
parent | fb1a6d9c56b1fd958bd08c34ddc01077c7302c5b (diff) |
Restructured code for displaying commentlinks
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index 4ca86e9..dc34572 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -140,7 +140,10 @@ else: # Show regular entry for line in content: print ' ' + line.strip() + '<br />' if comments == "True": - print ' <div class="comment"><ul><li><a href=? class="comment">comments</a></li></ul></div><br />' + print ' <div class="comment">' + print ' <ul><li><a href=? class="comment">comments</a></li></ul>' + print ' </div><br />' + print ' </p></div>' print ' <br /><br />' content.close() |