@@ -, +, @@ longer alerts librarian about next hold --- circ/waitingreserves.pl | 3 ++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) --- a/circ/waitingreserves.pl +++ a/circ/waitingreserves.pl @@ -160,9 +160,10 @@ $template->param( overcount => $overcount, show_date => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }), ReservesMaxPickUpDelay => $max_pickup_delay, + tab => $tab, ); -if ($item && $tab eq 'holdsover') { +if ($item && $tab eq 'holdsover' && !@cancel_result) { print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover"); } elsif ($cancelall) { print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl"); --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt @@ -51,8 +51,8 @@

[% nextreservtitle %] is on hold for [% nextreservsurname %], [% nextreservfirstname %]. Please retain this item and check it in to process the hold.

-
- + +
[% END %] @@ -62,8 +62,8 @@

[% nextreservtitle %] is on hold for [% nextreservsurname %], [% nextreservfirstname %]. Please retain this item and check it in to process the hold.

-
- + +
[% END %] --