@@ -, +, @@ --- C4/Circulation.pm | 10 ---------- 1 file changed, 10 deletions(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2124,16 +2124,6 @@ sub AddReturn { if C4::Context->preference("ReturnLog"); } - # Remove any OVERDUES related debarment if the borrower has no overdues - if ( $borrowernumber - && $patron->debarred - && C4::Context->preference('AutoRemoveOverduesRestrictions') - && !Koha::Patrons->find( $borrowernumber )->has_overdues - && @{ GetDebarments({ borrowernumber => $borrowernumber, type => 'OVERDUES' }) } - ) { - DelUniqueDebarment({ borrowernumber => $borrowernumber, type => 'OVERDUES' }); - } - # Check if this item belongs to a biblio record that is attached to an # ILL request, if it is we need to update the ILL request's status if (C4::Context->preference('CirculateILL')) { --