https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27718
--- Comment #9 from Andrew Nugged <[email protected]> --- Jonathan QA Note by the way: this in tests: $items = $holds->get_items_that_can_fill; but this in the main code we have: foreach my $item ( $holds->get_items_that_can_fill ) is that was intended for the subroutine to sense "wantarray" (so it works in for), or we should just change that for to smth: foreach my $item ( @{$holds->get_items_that_can_fill} ) ? -- 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/
