diff options
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() |