@@ -, +, @@ form in acquisition --- acqui/z3950_search.pl | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt | 3 +++ 2 files changed, 6 insertions(+) --- a/acqui/z3950_search.pl +++ a/acqui/z3950_search.pl @@ -45,6 +45,7 @@ my $srchany = $input->param('srchany'); my $stdid = $input->param('stdid'); my $dewey = $input->param('dewey'); my $controlnumber = $input->param('controlnumber'); +my $publicationyear = $input->param('publicationyear'); my $op = $input->param('op')||''; my $booksellerid = $input->param('booksellerid'); my $basketno = $input->param('basketno'); @@ -82,6 +83,7 @@ $template->param( subject => $subject, srchany => $srchany, stdid => $stdid, + publicationyear => $publicationyear, ); if ( $op ne "do_search" ) { @@ -124,6 +126,7 @@ my $pars= { controlnumber => $controlnumber, stdid => $stdid, srchany => $srchany, + publicationyear => $publicationyear, }; Z3950Search($pars, $template); output_html_with_http_headers $input, $cookie, $template->output; --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt @@ -34,6 +34,7 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
You searched for: [% IF ( title ) %]Title: [% title | html %] [% END %] [% IF ( author ) %]Author: [% author | html %] [% END %] + [% IF ( publicationyear ) %]Publication year: [% publicationyear | html %] [% END %] [% IF ( isbn ) %]ISBN: [% isbn | html %] [% END %] [% IF ( issn ) %]ISSN: [% issn | html %] [% END %] [% IF ( lccall ) %]LC call number: [% lccall | html %] [% END %] @@ -175,6 +177,7 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : + --