https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22005

Magnus Enger <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #2 from Magnus Enger <[email protected]> ---
I wonder if this code is introducing a bit of a off-by-one problem: 

C4::Circulation::checkHighHolds(), line 1230-1234

     # If the number of holds is less than the count of items we have
     # plus the number of holds allowed above that count, we can stop here
     if ( $holds->count() <= $threshold ) {
         return $return_data;
     }

The comment says "less than" but the code says "less than or equal".

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to