@@ -, +, @@ the search page --- Koha/MetaSearcher.pm | 1 + koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 2 ++ 2 files changed, 3 insertions(+) --- a/Koha/MetaSearcher.pm +++ a/Koha/MetaSearcher.pm @@ -62,6 +62,7 @@ sub handle_hit { my %fetch = ( title => 'biblio.title', + subtitle => 'biblio.subtitle', seriestitle => 'biblio.seriestitle', author => 'biblio.author', isbn =>'biblioitems.isbn', --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc @@ -59,6 +59,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr var z3950Labels = [ [ "local_number", _("Local number") ], [ "title", _("Title") ], + [ "subtitle",_("Subtitle") ], [ "series", _("Series title") ], [ "author", _("Author") ], [ "lccn", _("LCCN") ], @@ -66,6 +67,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr [ "issn", _("ISSN") ], [ "medium", _("Medium") ], [ "edition", _("Edition") ], + [ "date", _("Published") ], [ "notes", _("Notes") ], ]; --