Subject: | DBIx::Class::Timestamp->insert loses information |
The 'insert' method in DBIx::Class::Timestamp loses information, by
shifting the $attrs value off the argument list, and then ignoring it...
sub insert {
my $self = shift;
my $attrs = shift; #<-- $attrs taken off the arguments list
# ... $attrs not used anywhere in the body of the method ... #
return $self->next::method(@_); #<-- not passed on...
}
--
www.jasonkohles.com