From: Jonathan Druart Date: Tue, 7 Aug 2018 14:14:54 +0000 (-0300) Subject: Bug 21150: add the biblionumber to the output X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=76141a352ed5ff8c9541c0d4b1c99e22e5339add;p=koha.git Bug 21150: add the biblionumber to the output Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Nick Clemens --- diff --git a/misc/maintenance/search_for_data_inconsistencies.pl b/misc/maintenance/search_for_data_inconsistencies.pl index 797f5540ff..525d8c7609 100755 --- a/misc/maintenance/search_for_data_inconsistencies.pl +++ b/misc/maintenance/search_for_data_inconsistencies.pl @@ -83,8 +83,8 @@ use Koha::Authorities; new_section("Items have invalid itype defined"); while ( my $item = $items_with_invalid_itype->next ) { new_item( - sprintf "Item with itemnumber=%s does not have a valid itype value (%s)", - $item->itemnumber, $item->itype + sprintf "Item with itemnumber=%s, biblionumber=%s does not have a valid itype value (%s)", + $item->itemnumber, $item->biblionumber, $item->itype ); } new_hint("The items must have a itype value that is defined in the item types of Koha (Home › Administration › Item types administration)");