update the ChangeLog so andar doesn't beat me up

fix displaying tracker urls with & in the url in the gtkui
This commit is contained in:
Damien Churchill 2009-10-27 11:07:30 +00:00
parent 826f1a2be9
commit 831b81529c
1 changed files with 2 additions and 2 deletions

View File

@ -105,9 +105,9 @@ class DetailsTab(Tab):
if widget[0].get_text() != txt:
if widget[2][0] == 'comment' and is_url(txt):
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt))
widget[0].set_markup('<a href="%s">%s</a>' % (txt, txt.replace('&', '&amp;')))
else:
widget[0].set_markup(txt)
widget[0].set_markup(txt.replace('&', '&amp;'))
def clear(self):
for widget in self.label_widgets: