[Koha-bugs] [Bug 10821] label pdf adding in strange breaking

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Sat Sep 21 23:32:34 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10821

--- Comment #24 from Chris Cormack <chris at bigballofwax.co.nz> ---
(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.


More information about the Koha-bugs mailing list