X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAuthentication%2FRealm%2FAdaptor.pm;fp=lib%2FCatalyst%2FAuthentication%2FRealm%2FAdaptor.pm;h=ac40ce8e05817de601aebafeea8ae36dfa82bdb4;hb=b6ee801bb7cbbffa10ddd3e0bb98fe3c90b45c9c;hp=d11b07fcf0ccedcce1e79718f98394a628a14b2f;hpb=924b3b677cbdfa6feda7ec59d1ec1209d429cb7d;p=catagits%2FCatalyst-Authentication-Realm-Adaptor.git diff --git a/lib/Catalyst/Authentication/Realm/Adaptor.pm b/lib/Catalyst/Authentication/Realm/Adaptor.pm index d11b07f..ac40ce8 100644 --- a/lib/Catalyst/Authentication/Realm/Adaptor.pm +++ b/lib/Catalyst/Authentication/Realm/Adaptor.pm @@ -106,9 +106,9 @@ sub find_user { Catalyst::Exception->throw(__PACKAGE__ . " realm: " . $self->name . "'s store_adaptor is configured to use a code ref that doesn't exist"); } } - return $self->SUPER::find_user($c, $newauthinfo); + return $self->SUPER::find_user($newauthinfo, $c); } else { - return $self->SUPER::find_user($c, $authinfo); + return $self->SUPER::find_user($authinfo, $c); } }