View | Details | Raw Unified | Return to bug 23324
Collapse All | Expand All

(-)a/C4/Koha.pm (-2 / +2 lines)
Lines 823-831 sub _isbn_cleanup { Link Here
823
    ) if $isbn;
823
    ) if $isbn;
824
}
824
}
825
825
826
=head2 NormalizedISBN
826
=head2 NormalizeISBN
827
827
828
  my $isbns = NormalizedISBN({
828
  my $isbns = NormalizeISBN({
829
    isbn => $isbn,
829
    isbn => $isbn,
830
    strip_hyphens => [0,1],
830
    strip_hyphens => [0,1],
831
    format => ['ISBN-10', 'ISBN-13']
831
    format => ['ISBN-10', 'ISBN-13']
(-)a/Koha/Util/Normalize.pm (-2 lines)
Lines 18-24 package Koha::Util::Normalize; Link Here
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
use Business::ISBN;
22
21
23
use parent qw( Exporter );
22
use parent qw( Exporter );
24
23
25
- 

Return to bug 23324