Dennis Daupert wrote:
> # Populate the hash
> my %user = (
> fname => "$c->req->params->{fname}",
> lname => "$c->req->params->{lname}",
> username => "$c->req->params->{username}",
> password => "$c->req->params->{password}",
> email => "$c->req->params->{email}",
> active => '1' );
You're stringifying there, just remove the quotes. :)
-Andy