https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20724
--- Comment #24 from Marcel de Rooy <[email protected]> --- for ( my $i = 0 ; $i < $holds_to_place_count ; $i++ ) { AddReserve( $branch, $borrower->{'borrowernumber'}, $biblionumber, \@realbi, $rank[0], $startdate, $expirationdate, $notes, $title, $checkitem, $found, $itemtype ); } Horrible existing code with realbi and holds_to_place_count.. Also checkitem is passed to AddReserve each time in a for loop with biblionumbers. (It should be undef but you never know..) Note that the second patch removes $holds_to_place_count = 1. So lots of distraction here again with holds. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
