http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9673 Jonathan Druart <jonathan.druart@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff --- Comment #31 from Jonathan Druart <jonathan.druart@biblibre.com> --- Kyle, Sorry but the last patch needs a signoff. Early qa: maybe the 3 conditional tests if, unless and if + for my $field (@fields) { + if ( defined( $item->{$field} ) ) { + unless ( $pre_mod_item->{$field} ) { + if ( $item->{$field} ) { could be group into a simple condition (gain of visibility and indentation level) if( defined( $item->{$field} ) and not pre_mod_item->{$field} and $item->{$field} ) It's a minor thing. Switch back to Needs SignOff -- You are receiving this mail because: You are watching all bug changes.