@@ -, +, @@ reserves item enter the card number of a patron who has holds. do a non-exact search (search which will return more than one result) for a patron who has holds. --- circ/view_holdsqueue.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/circ/view_holdsqueue.pl +++ a/circ/view_holdsqueue.pl @@ -54,7 +54,7 @@ if ( $run_report ) { # XXX GetHoldsQueueItems() does not support $itemtypeslimit! my $items = GetHoldsQueueItems($branchlimit, $itemtypeslimit); $template->param( - branch => $branchlimit, + branchlimit => $branchlimit, total => scalar @$items, itemsloop => $items, run_report => $run_report, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -42,7 +42,7 @@ $(document).ready(function() { [% IF ( run_report ) %] [% IF ( total ) %]
[% total %] items found for - [% IF ( branch ) %][% branch %][% ELSE %]ALL libraries[% END %] + [% IF ( branchlimit ) %][% branchlimit %][% ELSE %]ALL libraries[% END %]
[% ELSE %]
No items found.
--