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

(-)a/C4/ImportBatch.pm (-2 / +1 lines)
Lines 1637-1643 sub _add_biblio_fields { Link Here
1637
    # FIXME no controlnumber, originalsource
1637
    # FIXME no controlnumber, originalsource
1638
    $isbn = C4::Koha::GetNormalizedISBN($isbn);
1638
    $isbn = C4::Koha::GetNormalizedISBN($isbn);
1639
    my $sth = $dbh->prepare("INSERT INTO import_biblios (import_record_id, title, author, isbn, issn) VALUES (?, ?, ?, ?, ?)");
1639
    my $sth = $dbh->prepare("INSERT INTO import_biblios (import_record_id, title, author, isbn, issn) VALUES (?, ?, ?, ?, ?)");
1640
    $sth->execute($import_record_id, $title, $author, $isbn, $issn);
1640
    $sth->execute($import_record_id, $title, $author, $isbn, $issn) or die $sth->errstr;
1641
    $sth->finish();
1641
    $sth->finish();
1642
                
1642
                
1643
}
1643
}
1644
- 

Return to bug 26853