[Koha-bugs] [Bug 9673] Track when items are marked as lost or withdrawn

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Jun 18 09:16:23 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9673

Jonathan Druart <jonathan.druart at biblibre.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Signed Off                  |Needs Signoff

--- Comment #31 from Jonathan Druart <jonathan.druart at 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.


More information about the Koha-bugs mailing list