http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7970
Chris Cormack <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |[email protected] --- Comment #6 from Chris Cormack <[email protected]> --- Doesn't this totally change the behaviour? - push (@items,@hostitems); + push (@hostitems,$items); Then - foreach my $item (@items){ + my %itemhash = %$items; + foreach my $item (keys %itemhash) { These are not equivalent, you are now totally ignoring the hostitems, whereas before it was looping over them -- 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/
