aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@goliath.thehappy.de>2009-03-08 22:13:01 +0100
committerStefan Ritter <xeno@goliath.thehappy.de>2009-03-08 22:13:01 +0100
commiteb91377cd4ecd04bd8bf45e580075c096e88e11f (patch)
tree256eebd8c0254e35406e5239d3d3d2f065c5921a
parentc04606595c049777f15ba81695d883d49c92408e (diff)
Links in the linklist are now target=_blank
-rwxr-xr-xblogthon.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index c1657ed..6f1331c 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -136,7 +136,7 @@ if linklist == "True":
print ' <div class="sidebarentry">'
print ' <small>links</small><br />'
for line in content:
- print ' &nbsp;<a href=' + line.split(" ")[0] + '>' + line.split(" ", 1)[1].strip() + '</a>&nbsp;<br />'
+ print ' &nbsp;<a href=' + line.split(" ")[0] + ' target=_blank>' + line.split(" ", 1)[1].strip() + '</a>&nbsp;<br />'
print ' </div>'
content.close()