0xDB info view: filming locations may contain commas, separate with semicolon
This commit is contained in:
parent
43792cd954
commit
d02c028be2
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ pandora.ui.infoView = function(data) {
|
||||||
.html(
|
.html(
|
||||||
formatKey(Ox._('Filming Locations')) + data.filmingLocations.map(function(location) {
|
formatKey(Ox._('Filming Locations')) + data.filmingLocations.map(function(location) {
|
||||||
return '<a href="/map/@' + location + '">' + location + '</a>'
|
return '<a href="/map/@' + location + '">' + location + '</a>'
|
||||||
}).join(', ')
|
}).join('; ')
|
||||||
)
|
)
|
||||||
.appendTo($text);
|
.appendTo($text);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue