escape find values in url

This commit is contained in:
j 2017-11-16 17:25:52 +01:00
commit 8c25aceb67
6 changed files with 13 additions and 10 deletions

View file

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