fixed syntax error in documentation
David Schmidt [Tue, 15 Jun 2010 11:04:46 +0000 (11:04 +0000)]
lib/Catalyst/Authentication/Store/DBIx/Class.pm

index 793079f..6c1eb1f 100644 (file)
@@ -126,8 +126,8 @@ This documentation refers to version 0.1201.
         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']
                           }))
     }