From 13c95f19d0a8115d4c8d1f5cae27e16af7ebd5c3 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Sun, 20 Oct 2013 20:27:31 -0400 Subject: [PATCH] [PASSED-QA] Bug 10445 - SIP Server doesn't respect maxoutstanding system preference - QA Followup Signed-off-by: Brendan Gallagher Followup to failed QA tests have helped pass. --- C4/SIP/ILS/Patron.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm index 52832a5..5b835ca 100644 --- a/C4/SIP/ILS/Patron.pm +++ b/C4/SIP/ILS/Patron.pm @@ -347,6 +347,7 @@ sub excessive_fines { } sub holds_blocked_by_excessive_fees { + my $self = shift; return ( $self->fee_amount && $self->fee_amount > C4::Context->preference("maxoutstanding") ); } -- 1.7.10.4