From 154366a080218c5a8124f3587b86a0dc3d1a6803 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Fri, 30 Aug 2024 08:40:14 -0300 Subject: [PATCH] Bug 37791: (follow-up) Last occurence Signed-off-by: Tomas Cohen Arazi Signed-off-by: Olivier V --- misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl | 2 +- misc/maintenance/process_record_through_filter.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl b/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl index 11543f36a3..5abed38bef 100755 --- a/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl +++ b/misc/maintenance/UNIMARC_sync_date_created_with_marc_biblio.pl @@ -88,7 +88,7 @@ sub updateMarc { $biblio &&= $biblio->metadata->record; unless ($biblio) { - $debug and warn '[ERROR] Biblio not found.'; + $debug and warn '[ERROR] Bibliographic record not found.'; return; } diff --git a/misc/maintenance/process_record_through_filter.pl b/misc/maintenance/process_record_through_filter.pl index 14aa9d4ef1..9582867604 100755 --- a/misc/maintenance/process_record_through_filter.pl +++ b/misc/maintenance/process_record_through_filter.pl @@ -13,7 +13,7 @@ use Koha::RecordProcessor; my $biblio = Koha::Biblios->find($ARGV[0]); unless ( $biblio ) { - print "Biblio not found\n"; + print "Bibliographic record not found\n"; exit; } my $record = $biblio->metadata->record; -- 2.34.1