Changelogging for 0.02.
[catagits/Catalyst-Authentication-Realm-Adaptor.git] / lib / Catalyst / Authentication / Realm / Adaptor.pm
index d11b07f..a24c7e7 100644 (file)
@@ -12,13 +12,13 @@ Catalyst::Authentication::Realm::Adaptor - Adjust parameters of authentication p
 
 =head1 VERSION
 
-Version 0.01
+Version 0.02
 
 =cut
 
 ## goes in catagits@jules.scsys.co.uk:Catalyst-Authentication-Realm-Adaptor.git
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 sub authenticate {
     my ( $self, $c, $authinfo ) = @_;
@@ -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);
     }
 }