Bug 23324: (QA follow-up) Typo and remove unneeded use statement
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Fri, 16 Aug 2019 06:03:55 +0000 (06:03 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 16 Aug 2019 11:27:01 +0000 (12:27 +0100)
Two typos in POD typo for routine name.
Remove "use Business::ISBN" from Normalize.pm.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
C4/Koha.pm
Koha/Util/Normalize.pm

index 2493467..9894a06 100644 (file)
@@ -823,9 +823,9 @@ sub _isbn_cleanup {
     ) if $isbn;
 }
 
-=head2 NormalizedISBN
+=head2 NormalizeISBN
 
-  my $isbns = NormalizedISBN({
+  my $isbns = NormalizeISBN({
     isbn => $isbn,
     strip_hyphens => [0,1],
     format => ['ISBN-10', 'ISBN-13']
index 7fe4179..af913b9 100644 (file)
@@ -18,7 +18,6 @@ package Koha::Util::Normalize;
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use Modern::Perl;
-use Business::ISBN;
 
 use parent qw( Exporter );