From d02c028be257f24693a516c0b3dae426d81e3154 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 1 Jun 2013 11:00:04 +0200 Subject: [PATCH] 0xDB info view: filming locations may contain commas, separate with semicolon --- static/js/pandora/infoView.0xdb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/infoView.0xdb.js b/static/js/pandora/infoView.0xdb.js index 22bdbd9a..39f6a2b0 100644 --- a/static/js/pandora/infoView.0xdb.js +++ b/static/js/pandora/infoView.0xdb.js @@ -390,7 +390,7 @@ pandora.ui.infoView = function(data) { .html( formatKey(Ox._('Filming Locations')) + data.filmingLocations.map(function(location) { return '' + location + '' - }).join(', ') + }).join('; ') ) .appendTo($text);