30 Aug
2019
30 Aug
'19
6:29 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8367 --- Comment #129 from Stefan Berndtsson <stefan.berndtsson@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.