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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 3185-3191 sub GetRenewCount { Link Here
3185
    my $patron = Koha::Patrons->find( $bornum );
3185
    my $patron = Koha::Patrons->find( $bornum );
3186
    my $item   = Koha::Items->find($itemno);
3186
    my $item   = Koha::Items->find($itemno);
3187
3187
3188
    return (0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3188
    return (0, 0, 0, 0, 0, 0) unless $patron or $item; # Wrong call, no renewal allowed
3189
3189
3190
    # Look in the issues table for this item, lent to this borrower,
3190
    # Look in the issues table for this item, lent to this borrower,
3191
    # and not yet returned.
3191
    # and not yet returned.
3192
- 

Return to bug 24083