[Catalyst-commits] r13348 - Catalyst-Authentication-Store-DBIx-Class/trunk/lib/Catalyst/Authentication/Store/DBIx

davewood at dev.catalyst.perl.org davewood at dev.catalyst.perl.org
Tue Jun 15 11:04:47 GMT 2010


Author: davewood
Date: 2010-06-15 12:04:46 +0100 (Tue, 15 Jun 2010)
New Revision: 13348

Modified:
   Catalyst-Authentication-Store-DBIx-Class/trunk/lib/Catalyst/Authentication/Store/DBIx/Class.pm
Log:
fixed syntax error in documentation

Modified: Catalyst-Authentication-Store-DBIx-Class/trunk/lib/Catalyst/Authentication/Store/DBIx/Class.pm
===================================================================
--- Catalyst-Authentication-Store-DBIx-Class/trunk/lib/Catalyst/Authentication/Store/DBIx/Class.pm	2010-06-15 10:29:20 UTC (rev 13347)
+++ Catalyst-Authentication-Store-DBIx-Class/trunk/lib/Catalyst/Authentication/Store/DBIx/Class.pm	2010-06-15 11:04:46 UTC (rev 13348)
@@ -126,8 +126,8 @@
         my ( $self, $c ) = @_;
 
         $c->authenticate({
-                          screen_name => $c->req->params->username,
-                          password => $c->req->params->password,
+                          screen_name => $c->req->params->{username},
+                          password => $c->req->params->{password},
                           status => [ 'registered', 'loggedin', 'active']
                           }))
     }




More information about the Catalyst-commits mailing list