The relevant POD looks like this: ----------------------------------------------------- =head1 DESCRIPTION Catch data inconsistencies in Koha database * Items with undefined homebranch and/or holdingbranch * Authorities with undefined authtypecodes/authority types * Item types: * if item types are defined at item level (item-level_itypes=specific item), then items.itype must be set else biblioitems.itemtype must be set * Item types defined in items or biblioitems must be defined in the itemtypes table * Invalid MARCXML in bibliographic records * Patrons with invalid category types due to lower and upper age limits * Any date fields in the database (timestamp, datetime, date) set to 0000-00-00 =cut ----------------------------------------------------- perldoc renders the list as running text, which is kind of hard to read. The list should either be formatted with "=item" or indented to be treated as "pre formatted" chunk of text. I would vote for the first option.
Created attachment 175908 [details] [review] Bug 38755: search_for_data_inconsistencies.pl: Fix list of inconsistencies To reproduce: - Run "perldoc misc/maintenance/search_for_data_inconsistencies.pl" - Verify the list of inconsistencies is rendered as running text To test: - Apply this patch - Run "perldoc misc/maintenance/search_for_data_inconsistencies.pl" - Verify the list of inconsistencies is now rendered as a bulleted list, with two list elements correctly indented
This patch conflicts with patches on bug 36027. Let's get that bug in before we fix this one.