View | Details | Raw Unified | Return to bug 28445
Collapse All | Expand All

(-)a/Koha/Items.pm (-4 / +3 lines)
Lines 333-342 sub batch_update { Link Here
333
                    { skip_record_index => 1 }
333
                    { skip_record_index => 1 }
334
                ) if $item->itemlost
334
                ) if $item->itemlost
335
                      and not $itemlost_pre;
335
                      and not $itemlost_pre;
336
337
                push @modified_itemnumbers, $item->itemnumber if $modified || $modified_holds_priority;
338
                $modified_fields += $modified + $modified_holds_priority;
339
            }
336
            }
337
338
            push @modified_itemnumbers, $item->itemnumber if $modified || $modified_holds_priority;
339
            $modified_fields += $modified + $modified_holds_priority;
340
        })};
340
        })};
341
341
342
        if ( $callback ) {
342
        if ( $callback ) {
343
- 

Return to bug 28445