View | Details | Raw Unified | Return to bug 25220
Collapse All | Expand All

(-)a/opac/opac-user.pl (-2 / +2 lines)
Lines 148-154 if ( C4::Context->preference('OpacRenewalAllowed') Link Here
148
}
148
}
149
149
150
my $maxoutstanding = C4::Context->preference('maxoutstanding');
150
my $maxoutstanding = C4::Context->preference('maxoutstanding');
151
if ( $amountoutstanding && ( $amountoutstanding > $maxoutstanding ) ){
151
$maxoutstanding = undef unless looks_like_number ( $maxoutstanding );
152
if ( $amountoutstanding && defined($maxoutstanding) && ( $amountoutstanding > $maxoutstanding ) ){
152
    $borr->{blockedonfines} = 1;
153
    $borr->{blockedonfines} = 1;
153
}
154
}
154
155
155
- 

Return to bug 25220