From 50dc9e5cf837c92ae070e494496821db4cd59063 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Sat, 1 May 2010 10:36:39 -0400 Subject: [PATCH] bug 4405 followup - fix typo As much as circ staff may want to block circulation to over-rude patrons, Koha probably shouldn't be trying to make that determination on its own. :) Signed-off-by: Galen Charlton --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 3201e68955..833d44d3c5 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -737,7 +737,7 @@ sub CanBookBeIssued { if ( C4::Context->preference("OverduesBlockCirc") eq 'block'){ $issuingimpossible{USERBLOCKEDREMAINING} = $count; } - elsif ( C4::Context->preference("OverudesBlockCirc") eq 'confirmation'){ + elsif ( C4::Context->preference("OverduesBlockCirc") eq 'confirmation'){ $needsconfirmation{USERBLOCKEDREMAINING} = $count; } }elsif($blocktype == 1){ -- 2.39.2