http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9673
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Needs Signoff --- Comment #31 from Jonathan Druart <[email protected]> --- 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. _______________________________________________ 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/
