X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=catalogue%2FISBDdetail.pl;h=28b5c2dd3caedd75df39a41aec1ba510903645ef;hb=9c5e40e4923179bf0b2b630d3e09797dc4c1fdb0;hp=de24490ce0b04637c0bd010f083a06d7d60d1100;hpb=0b0212cae3497f7746eb58a5397453c6e0173ba0;p=koha.git diff --git a/catalogue/ISBDdetail.pl b/catalogue/ISBDdetail.pl index de24490ce0..28b5c2dd3c 100755 --- a/catalogue/ISBDdetail.pl +++ b/catalogue/ISBDdetail.pl @@ -109,7 +109,12 @@ $template->param ( z3950_search_params => C4::Search::z3950_search_args(GetBiblioData($biblionumber)), ocoins => GetCOinSBiblio($record), C4::Search::enabled_staff_search_views, + searchid => $query->param('searchid'), ); + +my ( $holdcount, $holds ) = C4::Reserves::GetReservesFromBiblionumber($biblionumber,1); +$template->param( holdcount => $holdcount, holds => $holds ); + output_html_with_http_headers $query, $cookie, $template->output;