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.