Skip Menu |

This queue is for tickets about the Catalyst-Plugin-Authentication-Store-DBIx-Class CPAN distribution.

Report information
The Basics
Id: 32837
Status: new
Priority: 0/
Queue: Catalyst-Plugin-Authentication-Store-DBIx-Class

People
Owner: Nobody in particular
Requestors: frank.wiegand [...] gmail.com
Cc:
AdminCc:

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



Subject: Two documentations typos
Hi, there are two minor pod typos (in README and lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm), a patch is attached. Thanks, Frank
Subject: Class.pm.patch
--- lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm 2007-07-08 05:03:56.000000000 +0200 +++ lib/Catalyst/Plugin/Authentication/Store/DBIx/Class.pm.new 2008-01-31 15:52:20.000000000 +0100 @@ -309,7 +309,7 @@ password => $password, 'dbix_class' => { - searchargs = [ { -or => [ username => $username, + searchargs => [ { -or => [ username => $username, email => $email, clientid => $clientid ] }, @@ -337,7 +337,7 @@ if ($c->authenticate({ password => $password, - 'dbix_class' => { resultset = $rs } + 'dbix_class' => { resultset => $rs } })) { # do successful authentication actions here. }
Subject: README.patch
--- README 2007-07-08 04:53:31.000000000 +0200 +++ README.new 2008-01-31 15:49:12.000000000 +0100 @@ -218,7 +218,7 @@ password => $password, 'dbix_class' => { - searchargs = [ { -or => [ username => $username, + searchargs => [ { -or => [ username => $username, email => $email, clientid => $clientid ] }, @@ -246,7 +246,7 @@ if ($c->authenticate({ password => $password, - 'dbix_class' => { resultset = $rs } + 'dbix_class' => { resultset => $rs } })) { # do successful authentication actions here. }