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

(-)a/C4/ImportBatch.pm (-2 / +1 lines)
Lines 476-482 sub AddItemsToImportBiblio { Link Here
476
                                        VALUES (?, ?, ?)");
476
                                        VALUES (?, ?, ?)");
477
        $sth->bind_param(1, $import_record_id);
477
        $sth->bind_param(1, $import_record_id);
478
        $sth->bind_param(2, 'staged');
478
        $sth->bind_param(2, 'staged');
479
        $sth->bind_param(3, $item_marc->as_xml());
479
        $sth->bind_param(3, $item_marc->as_xml("USMARC"));
480
        $sth->execute();
480
        $sth->execute();
481
        push @import_items_ids, $dbh->{'mysql_insertid'};
481
        push @import_items_ids, $dbh->{'mysql_insertid'};
482
        $sth->finish();
482
        $sth->finish();
483
- 

Return to bug 18757