From c53b2e8a37bd79805946de1a5cd22b7c3019126f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 4 Apr 2014 11:57:34 +0200 Subject: [PATCH] Bug 11759: FIX the alert message if an item is on hold. If an item is on hold, the hold is not cancelled. This patch corrects the message displayed in this case. --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index 62a1f2a..c2947e8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -173,7 +173,7 @@ $(document).ready(function() { [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout or checkout_info.HIGHHOLDS ) %] [% IF checkout_info.RESERVED || checkout_info.RESERVE_WAITING %] -

The hold will be canceled.

+

This item is on hold for another patron. The hold will be overridden, but not cancelled.

[% END %] [% END %]

-- 1.7.10.4