fix links with html entities

This commit is contained in:
j 2023-11-17 11:36:15 +01:00
commit a537963b9f
3 changed files with 5 additions and 3 deletions

View file

@ -461,7 +461,7 @@ pandora.ui.infoView = function(data, isMixed) {
return key
? '<a href="/' + (
key == 'alternativeTitles' ? 'title' : key
) + '=' + pandora.escapeQueryValue(linkValue[idx]) + '">' + value + '</a>'
) + '=' + pandora.escapeQueryValue(Ox.decodeHTMLEntities(linkValue[idx])) + '">' + value + '</a>'
: value;
}).join(Ox.contains(specialListKeys, key) ? '; ' : ', ');
}