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

(-)a/C4/Circulation.pm (-1 / +2 lines)
Lines 817-822 sub CanBookBeIssued { Link Here
817
    }
817
    }
818
818
819
    $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
819
    $patron = Koha::Patrons->find( $patron->borrowernumber ); # FIXME Refetch just in case, to avoid regressions. But must not be needed
820
    $patron_unblessed = $patron->unblessed;
821
820
    if ( my $debarred_date = $patron->is_debarred ) {
822
    if ( my $debarred_date = $patron->is_debarred ) {
821
         # patron has accrued fine days or has a restriction. $count is a date
823
         # patron has accrued fine days or has a restriction. $count is a date
822
        if ($debarred_date eq '9999-12-31') {
824
        if ($debarred_date eq '9999-12-31') {
823
- 

Return to bug 19280