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

(-)a/C4/ImportBatch.pm (-2 / +1 lines)
Lines 1150-1156 sub _update_import_record_marc { Link Here
1150
    my $dbh = C4::Context->dbh;
1150
    my $dbh = C4::Context->dbh;
1151
    my $sth = $dbh->prepare("UPDATE import_records SET marc = ?, marcxml = ?
1151
    my $sth = $dbh->prepare("UPDATE import_records SET marc = ?, marcxml = ?
1152
                             WHERE  import_record_id = ?");
1152
                             WHERE  import_record_id = ?");
1153
    $sth->execute($marc_record->as_usmarc(), $marc_record->as_xml(), $import_record_id);
1153
    $sth->execute($marc_record->as_usmarc(), $marc_record->as_xml(C4::Context->preference('marcflavour')), $import_record_id);
1154
    $sth->finish();
1154
    $sth->finish();
1155
}
1155
}
1156
1156
1157
- 

Return to bug 7513