From 05eef218ccabb786c8cfae94034823b195948c36 Mon Sep 17 00:00:00 2001 From: David Cook Date: Thu, 29 Oct 2020 05:23:10 +0000 Subject: [PATCH] Bug 26853: Throw a fatal error if import_biblios insert fails Signed-off-by: David Nind Signed-off-by: Martin Renvoize --- C4/ImportBatch.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/ImportBatch.pm b/C4/ImportBatch.pm index 7d0d7bab5a..6c60c675a8 100644 --- a/C4/ImportBatch.pm +++ b/C4/ImportBatch.pm @@ -1637,7 +1637,7 @@ sub _add_biblio_fields { # FIXME no controlnumber, originalsource $isbn = C4::Koha::GetNormalizedISBN($isbn); my $sth = $dbh->prepare("INSERT INTO import_biblios (import_record_id, title, author, isbn, issn) VALUES (?, ?, ?, ?, ?)"); - $sth->execute($import_record_id, $title, $author, $isbn, $issn); + $sth->execute($import_record_id, $title, $author, $isbn, $issn) or die $sth->errstr; $sth->finish(); } -- 2.20.1