X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=cataloguing%2Fz3950_auth_search.pl;h=405656de567b3ad2b5a4d82acbdead6f11c11ce6;hb=HEAD;hp=e65b8aabed7a8b53e8a8b46c2ff7f6d0875c3560;hpb=7baa452a6a1609fae801802889dffe9ece32c20d;p=koha_ffzg diff --git a/cataloguing/z3950_auth_search.pl b/cataloguing/z3950_auth_search.pl index e65b8aabed..405656de56 100755 --- a/cataloguing/z3950_auth_search.pl +++ b/cataloguing/z3950_auth_search.pl @@ -43,6 +43,7 @@ my $srchany = $input->param('srchany'); my $op = $input->param('op')||''; my $page = $input->param('current_page') || 1; $page = $input->param('goto_page') if $input->param('changepage_goto'); +my $controlnumber = $input->param('controlnumber'); my ( $template, $loggedinuser, $cookie ) = get_template_and_user({ template_name => "cataloguing/z3950_auth_search.tt", @@ -63,6 +64,7 @@ $template->param( subjectsubdiv => $subjectsubdiv, srchany => $srchany, authid => $authid, + controlnumber => $controlnumber, ); if ( $op ne "do_search" ) { @@ -100,6 +102,7 @@ my $pars= { subjectsubdiv => $subjectsubdiv, srchany => $srchany, authid => $authid, + controlnumber => $controlnumber, }; Z3950SearchAuth($pars, $template); output_html_with_http_headers $input, $cookie, $template->output;