Skip Menu |

This queue is for tickets about the Template-Provider-DBIC CPAN distribution.

Report information
The Basics
Id: 71316
Status: new
Priority: 0/
Queue: Template-Provider-DBIC

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

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



Subject: find() calls fail.
Using SQLite as my backend. It seems that this module doesn't call DBIC's find() correctly. In DBIC.pm on lines 313-316: # Try to retrieve the template from the database. my $template = $resultset->find( $name, { key => $self->{ COLUMN_NAME } } ); That find() call should probably be written as: my $template = $resultset->find( { $self->{ COLUMN_NAME } => $name } ); Same thing for lines 363-366.