Skip Menu |

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

Report information
The Basics
Id: 70019
Status: new
Priority: 0/
Queue: DBIx-Class-UserStamp

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

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



Subject: bug in synopsis
my $user = $new->schema->resultset('User')->new_result({ %$user_info }); $new->schema->current_user_id($user->id) if (defined $user_info); The first line creates a new DBIC result object without inserting it into the database. The id method call in the second line will return undef because of that.