mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 23:03:43 +02:00
Fix tags with angle brackets not being displayed in the Book Details panel
This commit is contained in:
parent
37c2044c6f
commit
5ac0287a62
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ def mi_to_html(mi, field_list=None, default_author_link=None, use_roman_numbers=
|
|||
if field == 'tags':
|
||||
all_vals = sorted(all_vals, key=sort_key)
|
||||
links = ['<a href="%s" title="%s">%s</a>' % (
|
||||
search_href(st, x), _('Click to see books with {0}: {1}').format(metadata['name'], x), x)
|
||||
search_href(st, x), _('Click to see books with {0}: {1}').format(metadata['name'], a(x)), p(x))
|
||||
for x in all_vals]
|
||||
val = metadata['is_multiple']['list_to_ui'].join(links)
|
||||
elif metadata['datatype'] == 'enumeration':
|
||||
|
|
|
|||
Loading…
Reference in a new issue