https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=16272 Nick Clemens <nick@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA --- Comment #10 from Nick Clemens <nick@bywatersolutions.com> --- For the special case, if a default rule is set in addition to the circ rule then the onsite checkout to change to a regular checkout still activates a too many warning I think you need the delta at the lines below as well 539 if ( C4::Context->preference('ConsiderOnSiteCheckoutsAsNormalCheckouts') ) { 540 if ( $checkout_count >= $max_checkouts_allowed ) { 541 return { 542 reason => 'TOO_MANY_CHECKOUTS', 543 count => $checkout_count, 544 max_allowed => $max_checkouts_allowed, 545 }; 546 } -- You are receiving this mail because: You are watching all bug changes.