[Koha-bugs] [Bug 8367] How long is a hold waiting for pickup at a more granular level

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Aug 30 15:29:44 CEST 2019


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

--- Comment #129 from Stefan Berndtsson <stefan.berndtsson at ub.gu.se> ---
There seems to be a bug in Koha/Hold.pm, set_waiting() where
GetReservesControlBranch() is called as a method rather than a function causing
the package name to become the first argument.


This line:

my $controlbranch = C4::Reserves->GetReservesControlBranch( $item, $patron );

Should be:

my $controlbranch = C4::Reserves::GetReservesControlBranch( $item, $patron );


...if I'm not mistaken. The current code causes an error with checkin on the
pickup library for the book.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list