Skip Menu |

This queue is for tickets about the Class-DBI-Loader CPAN distribution.

Report information
The Basics
Id: 14529
Status: new
Priority: 0/
Queue: Class-DBI-Loader

People
Owner: Nobody in particular
Requestors: djh [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.22
Fixed in: (no value)



Subject: left base option broken
I was just reading the code and noticed this in C-DBI-L-Generic::_load_classes: my $additional = join '', map "use $_;", @{ $self->{_additional} }; my $additional_base = join '', map "use base '$_';", @{ $self->{_additional_base} }; my $left_base = join '', map "use $_;", @{ $self->{_left_base} }; If I've understood the docs correctly, it seems to me the last line should read: my $left_base = join '', map "use base '$_';", @{ $self->{_left_base} }; Cheers, Dave