Skip Menu |

This queue is for tickets about the DBIx-Class-TimeStamp CPAN distribution.

Report information
The Basics
Id: 35849
Status: resolved
Priority: 0/
Queue: DBIx-Class-TimeStamp

People
Owner: jshirley+cpan [...] gmail.com
Requestors: jasonk@cpan.org (no email address)
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.05
Fixed in: (no value)



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
Resolved, thanks to rafl and DynamicDefaults