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 <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Caroline Cyr La Rose 2023-05-10 14:52:58 -04:00 committed by Tomas Cohen Arazi
parent 3a2ae8e3f9
commit 27a086b91e
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -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");
}
}