From 4f702796b0439e830a6c6ada7bec6afdaaa7b27e Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Sun, 20 Oct 2013 20:27:31 -0400 Subject: [PATCH] Bug 10445: (follow-up) fix error Signed-off-by: Brendan Gallagher Followup to failed QA tests have helped pass. Signed-off-by: Galen Charlton (cherry picked from commit d4ad282e91f034d992e0f726ed256a0ddbf6b20f) Signed-off-by: Tomas Cohen Arazi --- 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 9ecb0b4e6b..cbb9d25905 100644 --- a/C4/SIP/ILS/Patron.pm +++ b/C4/SIP/ILS/Patron.pm @@ -345,6 +345,7 @@ sub excessive_fines { } sub holds_blocked_by_excessive_fees { + my $self = shift; return ( $self->fee_amount && $self->fee_amount > C4::Context->preference("maxoutstanding") ); } -- 2.39.5