@@ -, +, @@ --- Koha/BackgroundJob/BatchDeleteItem.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/BackgroundJob/BatchDeleteItem.pm +++ a/Koha/BackgroundJob/BatchDeleteItem.pm @@ -108,7 +108,7 @@ sub process { my $item = Koha::Items->find($record_id) || next; - my $return = $item->safe_delete; + my $return = $item->safe_delete({ skip_record_index => 1 }); unless ( $return ) { # FIXME Do we need to rollback the whole transaction if a deletion failed? --