diff options
author | Stefan Ritter <gideonstar@thehappy.de> | 2009-09-22 13:15:26 +0200 |
---|---|---|
committer | Stefan Ritter <gideonstar@thehappy.de> | 2009-09-22 13:15:26 +0200 |
commit | ac19e12ada9fad33c321b04e45e4832ad4da95c9 (patch) | |
tree | ccee23d1f61815f64998b2aafbda4634432ca9d2 | |
parent | b00a72fb3d5d4938eda4348d8f417f50db1eece2 (diff) |
Bugfix when comments=false (thanks to talynrae for reporting)
-rwxr-xr-x | blogthon.cgi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/blogthon.cgi b/blogthon.cgi index e939215..f2d565c 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -507,6 +507,9 @@ else: print ' </div>' print '' comments_content.close() + else: + print ' </div>' + print '' content.close() entry_counter += 1 |