Summary: | Importing a record with an ISBN13 with no ISBN10 counterpart does not save the ISBN | ||
---|---|---|---|
Product: | Koha | Reporter: | Nick Clemens (kidclamp) <nick> |
Component: | Tools | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | normal | ||
Priority: | P5 - low | CC: | lucas |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
See Also: | https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29437 | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Nick Clemens (kidclamp)
2021-11-08 19:41:50 UTC
Any ISBN prefixed with 979 cannot be converted to an ISBN10. An 979 ISBN will also not pass the check here: if ( $isbn && $isbn->is_valid() ) For example: use Business::ISBN; my $isbn = Business::ISBN->new(9798986969305); warn Data::Dumper::Dumper($isbn->is_valid); this returns an empty string for $isbn->is_valid |