From: David Cook Date: Thu, 12 Jul 2012 01:26:56 +0000 (+1000) Subject: Bug 8422 - Fix impossible warning in circulation.pl when OverduesBlockCirc set to... X-Git-Url: http://git.rot13.org/?p=koha.git;a=commitdiff_plain;h=b932363f7009895c3e756d31716dde65d6bb77c6 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 --- 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 2743c5f02a..6f72392ad9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -410,7 +410,7 @@ function validate1(date) { [% END %] [% IF ( USERBLOCKEDOVERDUE ) %] -
  • Patron has [% USERBLOCKEDOVERDUE %] overdue item(s). Check out anyway?
  • +
  • Checkouts are BLOCKED because patron has overdue items
  • [% END %]