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

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

Return to bug 25220