don't lookup filming location on map

This commit is contained in:
j 2018-05-08 12:33:29 +01:00
parent d3203ccefe
commit 7f895a8660

View file

@ -493,7 +493,7 @@ pandora.ui.infoView = function(data) {
.css(css) .css(css)
.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="/' + location + '">' + location + '</a>'
}).join('; ') }).join('; ')
) )
.appendTo($text); .appendTo($text);