name can contain &, decode html first. fixes #2917
This commit is contained in:
parent
05e6118a88
commit
d20620a716
1 changed files with 1 additions and 1 deletions
|
@ -822,7 +822,7 @@ pandora.ui.infoView = function(data) {
|
||||||
.html(Ox._('Loading {0}...', [filmography]));
|
.html(Ox._('Loading {0}...', [filmography]));
|
||||||
getFilmography(
|
getFilmography(
|
||||||
key == 'studios' ? 'productionCompany' : 'name',
|
key == 'studios' ? 'productionCompany' : 'name',
|
||||||
value.name,
|
Ox.decodeHTMLEntities(value.name),
|
||||||
value.keys,
|
value.keys,
|
||||||
function($element) {
|
function($element) {
|
||||||
$link.addClass('OxLink')
|
$link.addClass('OxLink')
|
||||||
|
|
Loading…
Reference in a new issue