X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=catalogue%2Fmoredetail.pl;h=0b339dcc75c084c331316295b6529361a723a872;hb=b27c5296b777bed4e192e004f8c4ed730092da36;hp=6f626616f7c2c0e1f71f4a9433ed721a254a1735;hpb=2d048e474eca067481b3de93041e7c3cae85d8ca;p=koha.git diff --git a/catalogue/moredetail.pl b/catalogue/moredetail.pl index 6f626616f7..0b339dcc75 100755 --- a/catalogue/moredetail.pl +++ b/catalogue/moredetail.pl @@ -30,6 +30,7 @@ use C4::Auth; use C4::Serials; use C4::Dates qw/format_date/; use C4::Circulation; # to use itemissues +use C4::Search; # enabled_staff_search_views my $query=new CGI; @@ -119,6 +120,7 @@ foreach my $item (@items){ $template->param(count => $data->{'count'}, subscriptionsnumber => $subscriptionsnumber, subscriptiontitle => $data->{title}, + C4::Search::enabled_staff_search_views, ); $template->param(BIBITEM_DATA => \@results); $template->param(ITEM_DATA => \@items); @@ -128,6 +130,7 @@ $template->param(biblionumber => $biblionumber); $template->param(biblioitemnumber => $bi); $template->param(itemnumber => $itemnumber); $template->param(ONLY_ONE => 1) if ( $itemnumber && $count != @items ); +$template->param(z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber))); output_html_with_http_headers $query, $cookie, $template->output;