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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 430-436 sub TooMany { Link Here
430
    # if a rule is found and has a loan limit set, count
430
    # if a rule is found and has a loan limit set, count
431
    # how many loans the patron already has that meet that
431
    # how many loans the patron already has that meet that
432
    # rule
432
    # rule
433
    if (defined($maxissueqty_rule) and defined($maxissueqty_rule->rule_value)) {
433
    if (defined($maxissueqty_rule) and $maxissueqty_rule->rule_value ne "") {
434
434
435
        my @bind_params;
435
        my @bind_params;
436
        my $count_query = "";
436
        my $count_query = "";
437
- 

Return to bug 21946