decode titles in id dialog, fixes #1448

This commit is contained in:
j 2013-07-07 17:37:20 +00:00
parent 61a37645fd
commit 3c4e5f266c

View file

@ -95,9 +95,9 @@ pandora.ui.idDialog = function(data) {
Ox.Input({
label: Ox.toTitleCase(key),
labelWidth: 128,
value: key == 'director' && data[key]
value: Ox.decodeHTMLEntities(key == 'director' && data[key]
? data[key].join(', ')
: data[key],
: data[key]),
width: formWidth
})
.css({display: 'inline-block', margin: '3px'})