Links in the linklist are now target=_blank

This commit is contained in:
Stefan Ritter 2009-03-08 22:13:01 +01:00
parent c04606595c
commit eb91377cd4
1 changed files with 1 additions and 1 deletions

View File

@ -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()