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

--- Comment #129 from Stefan Berndtsson <[email protected]> ---
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.
_______________________________________________
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