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

(-)a/C4/Reserves.pm (-2 / +1 lines)
Lines 313-319 sub CanItemBeReserved { Link Here
313
    my $ruleitemtype;    # itemtype of the matching issuing rule
313
    my $ruleitemtype;    # itemtype of the matching issuing rule
314
    my $allowedreserves  = 0; # Total number of holds allowed across all records
314
    my $allowedreserves  = 0; # Total number of holds allowed across all records
315
    my $holds_per_record = 1; # Total number of holds allowed for this one given record
315
    my $holds_per_record = 1; # Total number of holds allowed for this one given record
316
    my $holds_per_day    = 0; # Total number of holds allowed per day for the given patron
316
    my $holds_per_day;        # Default to unlimited
317
317
318
    # we retrieve borrowers and items informations #
318
    # we retrieve borrowers and items informations #
319
    # item->{itype} will come for biblioitems if necessery
319
    # item->{itype} will come for biblioitems if necessery
320
- 

Return to bug 15486