diff --git a/pandora/templates/index.html b/pandora/templates/index.html index 82091243..f6929f40 100644 --- a/pandora/templates/index.html +++ b/pandora/templates/index.html @@ -1,8 +1,8 @@ - {{settings.SITENAME}} + {{settings.SITENAME}} diff --git a/static/js/pandora/filesView.js b/static/js/pandora/filesView.js index 2def4ca6..219ca63f 100644 --- a/static/js/pandora/filesView.js +++ b/static/js/pandora/filesView.js @@ -288,7 +288,7 @@ pandora.ui.filesView = function(options, self) { Ox.map(['id', 'title', 'director', 'year'], function(key) { var value = self['$' + key + 'Input'].options('value'); if(value.length) { - conditions[key] = value; + conditions[key] = key == 'director' ? value.split(', ') : value; } }); pandora.api.findId(conditions, function(result) {