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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 934-940 sub CanBookBeIssued { Link Here
934
            $needsconfirmation{current_loan_count} = $toomany->{count};
934
            $needsconfirmation{current_loan_count} = $toomany->{count};
935
            $needsconfirmation{max_loans_allowed} = $toomany->{max_allowed};
935
            $needsconfirmation{max_loans_allowed} = $toomany->{max_allowed};
936
        } else {
936
        } else {
937
            $needsconfirmation{TOO_MANY} = $toomany->{reason};
937
            $issuingimpossible{TOO_MANY} = $toomany->{reason};
938
            $issuingimpossible{current_loan_count} = $toomany->{count};
938
            $issuingimpossible{current_loan_count} = $toomany->{count};
939
            $issuingimpossible{max_loans_allowed} = $toomany->{max_allowed};
939
            $issuingimpossible{max_loans_allowed} = $toomany->{max_allowed};
940
        }
940
        }
941
- 

Return to bug 16569