From e8f72095dc55fcaa9a05144c219244e326c033d4 Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Wed, 10 May 2023 14:52:58 -0400 Subject: [PATCH] Bug 33717: Typo in search_for_data_inconsistencies.pl This patch corrects a typo in the output of search_for_data_inconsistencies.pl when a bibliographic record has no title. The patch also replaces biblio to bibliographic record in the same sentence for terminology consistency. To test: - Have a bibliographic record without a title - Run misc/maintenance/search_for_data_inconsistencies.pl - Read output, make sure the sentence is correct Signed-off-by: Katrin Fischer --- misc/maintenance/search_for_data_inconsistencies.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl index 98f69215cd..4fd9502c36 100755 --- a/misc/maintenance/search_for_data_inconsistencies.pl +++ b/misc/maintenance/search_for_data_inconsistencies.pl @@ -288,7 +288,7 @@ use C4::Biblio qw( GetMarcFromKohaField ); while ( my $biblio = $biblios->next ) { new_item(sprintf "Biblio with biblionumber=%s does not have title defined", $biblio->biblionumber); } - new_hint("Edit these biblio records to defined a title"); + new_hint("Edit these bibliographic records to define a title"); } } -- 2.30.2