aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-03-03 13:53:31 +0100
committerStefan Ritter <xeno@thehappy.de>2009-03-03 13:53:31 +0100
commitb964989fcef583532980956bb119782d3f95b64b (patch)
tree20ec9a55a4e288ee8c2ec8815768cab876b76963
parentfb1a6d9c56b1fd958bd08c34ddc01077c7302c5b (diff)
Restructured code for displaying commentlinks
-rwxr-xr-xblogthon.cgi5
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()