View | Details | Raw Unified | Return to bug 5790
Collapse All | Expand All

(-)a/catalogue/imageviewer.pl (+3 lines)
Lines 78-81 $template->{VARS}->{'norequests'} = $norequests; Link Here
78
$template->param(C4::Search::enabled_staff_search_views);
78
$template->param(C4::Search::enabled_staff_search_views);
79
$template->{VARS}->{'biblio'} = $biblio;
79
$template->{VARS}->{'biblio'} = $biblio;
80
80
81
my ( $holdcount, $holds ) = GetReservesFromBiblionumber($biblionumber,1);
82
$template->param( holdcount => $holdcount, holds => $holds );
83
81
output_html_with_http_headers $query, $cookie, $template->output;
84
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/catalogue/labeledMARCdetail.pl (-1 / +3 lines)
Lines 136-139 $template->param ( Link Here
136
	C4::Search::enabled_staff_search_views,
136
	C4::Search::enabled_staff_search_views,
137
);
137
);
138
138
139
my ( $holdcount, $holds ) = GetReservesFromBiblionumber($biblionumber,1);
140
$template->param( holdcount => $holdcount, holds => $holds );
141
139
output_html_with_http_headers $query, $cookie, $template->output;
142
output_html_with_http_headers $query, $cookie, $template->output;
140
- 

Return to bug 5790