24 Feb
2021
24 Feb
'21
4:21 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27718 --- Comment #9 from Andrew Nugged <nugged@gmail.com> --- 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.