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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 3215-3221 sub GetRenewCount { Link Here
3215
    my $patron = Koha::Patrons->find( $bornum );
3215
    my $patron = Koha::Patrons->find( $bornum );
3216
    my $item   = Koha::Items->find($itemno);
3216
    my $item   = Koha::Items->find($itemno);
3217
3217
3218
    return (0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3218
    return (0, 0, 0, 0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3219
3219
3220
    # Look in the issues table for this item, lent to this borrower,
3220
    # Look in the issues table for this item, lent to this borrower,
3221
    # and not yet returned.
3221
    # and not yet returned.
3222
- 

Return to bug 24083