diff options
author | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-03-08 22:13:01 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@goliath.thehappy.de> | 2009-03-08 22:13:01 +0100 |
commit | eb91377cd4ecd04bd8bf45e580075c096e88e11f (patch) | |
tree | 256eebd8c0254e35406e5239d3d3d2f065c5921a | |
parent | c04606595c049777f15ba81695d883d49c92408e (diff) |
Links in the linklist are now target=_blank
-rwxr-xr-x | blogthon.cgi | 2 |
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 ' <a href=' + line.split(" ")[0] + '>' + line.split(" ", 1)[1].strip() + '</a> <br />' + print ' <a href=' + line.split(" ")[0] + ' target=_blank>' + line.split(" ", 1)[1].strip() + '</a> <br />' print ' </div>' content.close() |