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

--- Comment #18 from Olivier Hubert <[email protected]> ---
(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.
_______________________________________________
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