https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15486 --- Comment #53 from M. Tompsett <mtompset@hotmail.com> --- Comment on attachment 71317 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=71317 Bug 15486: Extend CanItemBeReserved so it handles daily holds limits Review of attachment 71317: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=15486&attachment=71317) ----------------------------------------------------------------- ::: C4/Reserves.pm @@ +300,4 @@
my $ruleitemtype; # itemtype of the matching issuing rule my $allowedreserves = 0; # Total number of holds allowed across all records my $holds_per_record = 1; # Total number of holds allowed for this one given record + my $holds_per_day = 0; # Total number of holds allowed per day for the given patron
Shouldn't this default to undef? (i.e. unlimited) -- You are receiving this mail because: You are watching all bug changes.