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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 3204-3210 sub GetRenewCount { Link Here
3204
    my $patron = Koha::Patrons->find( $bornum );
3204
    my $patron = Koha::Patrons->find( $bornum );
3205
    my $item   = Koha::Items->find($itemno);
3205
    my $item   = Koha::Items->find($itemno);
3206
3206
3207
    return (0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3207
    return (0, 0, 0, 0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3208
3208
3209
    # Look in the issues table for this item, lent to this borrower,
3209
    # Look in the issues table for this item, lent to this borrower,
3210
    # and not yet returned.
3210
    # and not yet returned.
3211
- 

Return to bug 24083