From 8428347fe9dae150fa80d56fe6c7fb98dfe289fa Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Sun, 20 Oct 2013 20:27:31 -0400 Subject: [PATCH] Bug 10445 - SIP Server doesn't respect maxoutstanding system preference - QA Followup --- C4/SIP/ILS/Patron.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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.2.5