https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36313 --- Comment #18 from Olivier Hubert <olivier.hubert@inlibro.com> --- (In reply to Emmi Takkinen from comment #15)
(In reply to Olivier Hubert from comment #9)
We are having the same symptom, e.g. a 500 error when checking in / checking out. However, instead of an error with the database, we have the following in the Apache error log:
Undefined subroutine &C4::Circulation::CheckReserves called at /[path to koha]/C4/Circulation.pm line 1179.
Were you able to solve what caused this error? I'm currently facing the same problem in my development environment.
We still have the issue. The only workaround we have found so far is to add C4::Reserves before the CheckReserves call on line 1179 of Circulation.pm. So instead of my ( $restype, $res ) = CheckReserves( $item_object ); use my ( $restype, $res ) = C4::Reserves::CheckReserves( $item_object ); As we are not using the current master version in production, we have postponed investigating the actual cause of the issue. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.