0xDB info view: filming locations may contain commas, separate with semicolon

This commit is contained in:
rolux 2013-06-01 11:00:04 +02:00
parent 43792cd954
commit d02c028be2

View file

@ -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);