From 567c473ed092de3a9dc7c716d693e04fff9972ee Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 27 Jul 2013 21:29:32 +0200 Subject: [PATCH] fix #1713 (seriesYear should link to year=..., not seriesYear=...) --- static/js/infoView.0xdb.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/js/infoView.0xdb.js b/static/js/infoView.0xdb.js index dff6b6a2..d9159b2a 100644 --- a/static/js/infoView.0xdb.js +++ b/static/js/infoView.0xdb.js @@ -372,7 +372,10 @@ pandora.ui.infoView = function(data) { Ox.Editable({ clickLink: pandora.clickLink, format: function(value) { - return formatValue(value.split(', '), key) + return formatValue( + value.split(', '), + key == 'episodeDirector' ? 'name' : 'year' + ); }, placeholder: formatLight('unknown'), tooltip: pandora.getEditTooltip(),