@@ -, +, @@ for authorities - Go to Authorities home page : cgi-bin/koha/authorities/authorities-home.pl - In toolbar, "Search main heading" is selected - Change all inputs : authotity type, operator, term, and sort order - Click on "Search all headings" tab - Click on "Keyword search" tab --- koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc | 5 +++++ 1 file changed, 5 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/authorities-search.inc @@ -14,6 +14,11 @@ $("#header_search").tabs( "option", "selected", 2 ); } } + $("#header_search input[type='text'], #header_search select").change(function() { + var myname = $(this).attr("name"); + var myval = $(this).val(); + $("#header_search [name='" + myname + "']").val(myval); + }); }); //]]> --