http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10821
--- Comment #24 from Chris Cormack <[email protected]> --- (In reply to Chris Cormack from comment #23) > The only way I could see to hurry this along, would be send a patch to the > Library::CallNumber::LC maintainer to help them implement the feature. > > You could perhaps persuade (by paying, giving cookies, some other means of > reward) a developer to work on that for you. Hints if you do find one So we do my @parts = Library::CallNumber::LC->new($lccn)->components(); Which doesn't actually call the normalize routine. However I note sub new { my $proto = shift; my $class = ref($proto) || $proto; my $lc = shift || ''; my $self = { callno => uc($lc), }; bless $self, $class; return $self; } The new upper cases the number. components just splits it. So adding a no_uc flag shouldn't be too hard. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
