diff options
Diffstat (limited to '')
-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() |