https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40475
--- Comment #1 from David Cook <[email protected]> --- In reserve/request.pl we just use this code: my $canReserve = CanBookBeReserved( $patron->borrowernumber, $biblionumber ); CanItemBeReserved( $patron, $item_object, undef, { get_from_cache => 1 } )->{status}; So it looks like the majority of CanBookBeReserved never runs because $params->{itemtype} will always be null. But that might be OK, because at the end of CanBookBeReserved we iterate through all the items attached to that bib and we check them using CanItemBeReserved... -- 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/
