diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-02-25 12:06:09 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-02-25 12:06:09 +0100 |
commit | d6eb14bda521a26694589546c3ca7cad0b315f13 (patch) | |
tree | bdc7f5be57cb50c4092381cf2bcd1ed66293150b | |
parent | e664b622e9f1c54d3500d571eb9dce087b99732e (diff) |
Removed target _blank to be strict
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 7a3865a..06dab83 100755 --- a/blogthon.cgi +++ b/blogthon.cgi @@ -441,7 +441,7 @@ else: if line.strip() is "": print '<br />' else: - print ' <li class="linklist_list_entry"><a href="' + line.split(" ")[0] + '" target="_blank" class="months_list_entry">' + line.split(" ", 1)[1].strip() + '</a></li>' + print ' <li class="linklist_list_entry"><a href="' + line.split(" ")[0] + '" class="months_list_entry">' + line.split(" ", 1)[1].strip() + '</a></li>' content.close() except: print '' |