http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7970 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |chris@bigballofwax.co.nz --- Comment #6 from Chris Cormack <chris@bigballofwax.co.nz> --- 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.