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

(-)a/circ/returns.pl (-2 / +1 lines)
Lines 410-416 if ($barcode) { Link Here
410
    }
410
    }
411
411
412
    # Mark missing bundle items as lost and report unexpected items
412
    # Mark missing bundle items as lost and report unexpected items
413
    if ( $item->is_bundle && $query->param('confirm_items_bundle_return') ) {
413
    if ( $item && $item->is_bundle && $query->param('confirm_items_bundle_return') ) {
414
        my $BundleLostValue = C4::Context->preference('BundleLostValue');
414
        my $BundleLostValue = C4::Context->preference('BundleLostValue');
415
        my $barcodes = $query->param('verify-items-bundle-contents-barcodes');
415
        my $barcodes = $query->param('verify-items-bundle-contents-barcodes');
416
        my @barcodes = map { s/^\s+|\s+$//gr } ( split /\n/, $barcodes );
416
        my @barcodes = map { s/^\s+|\s+$//gr } ( split /\n/, $barcodes );
417
- 

Return to bug 31192