From f8ce5f60dd9e72bbbad9c3fc11b9e72c49104a16 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 12 Jul 2012 11:26:56 +1000 Subject: [PATCH] Bug 8422 - Fix impossible warning in circulation.pl when OverduesBlockCirc set to Block Previously, the message Patron has x overdue item(s). Checkout anyway? was shown when syspref OverduesBlockCirc was set to Ask for confirmation or Block. This patch changes the message for Block to: Checkouts are BLOCKED because patron has overdues. Signed-off-by: Kyle M Hall Signed-off-by: Paul Poulain Signed-off-by: Chris Cormack (cherry picked from commit 0594a89f0fbd60984f631c65df8de0a0ce9284ee) Signed-off-by: Jared Camins-Esakov --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 22fd6164a2..ea2b88ef45 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -404,7 +404,7 @@ function refocus(calendar) { [% END %] [% IF ( USERBLOCKEDOVERDUE ) %] -
  • Patron has [% USERBLOCKEDOVERDUE %] overdue item(s). Check out anyway?
  • +
  • Checkouts are BLOCKED because patron has overdue items
  • [% END %] -- 2.39.5