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

(-)a/C4/ImportBatch.pm (-2 / +1 lines)
Lines 467-473 sub AddItemsToImportBiblio { Link Here
467
                                        VALUES (?, ?, ?)");
467
                                        VALUES (?, ?, ?)");
468
        $sth->bind_param(1, $import_record_id);
468
        $sth->bind_param(1, $import_record_id);
469
        $sth->bind_param(2, 'staged');
469
        $sth->bind_param(2, 'staged');
470
        $sth->bind_param(3, $item_marc->as_xml());
470
        $sth->bind_param(3, $item_marc->as_xml("USMARC"));
471
        $sth->execute();
471
        $sth->execute();
472
        push @import_items_ids, $dbh->{'mysql_insertid'};
472
        push @import_items_ids, $dbh->{'mysql_insertid'};
473
        $sth->finish();
473
        $sth->finish();
474
- 

Return to bug 18757