[Catalyst-commits] r6977 -
trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication
bricas at dev.catalyst.perl.org
bricas at dev.catalyst.perl.org
Tue Oct 9 21:29:59 GMT 2007
Author: bricas
Date: 2007-10-09 21:29:59 +0100 (Tue, 09 Oct 2007)
New Revision: 6977
Modified:
trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm
Log:
send $res to auto_update
Modified: trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm
===================================================================
--- trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm 2007-10-09 20:11:29 UTC (rev 6976)
+++ trunk/Catalyst-Plugin-Authentication/lib/Catalyst/Plugin/Authentication/Realm.pm 2007-10-09 20:29:59 UTC (rev 6977)
@@ -93,7 +93,7 @@
$res = $self->store->auto_create($authinfo, $c);
}
} elsif ($self->config->{'auto_update'} && $self->store->can('auto_update')) {
- $res = $self->store->auto_update($authinfo, $c);
+ $res = $self->store->auto_update($authinfo, $c, $res);
}
return $res;
@@ -135,4 +135,4 @@
__PACKAGE__;
-__END__
\ No newline at end of file
+__END__
More information about the Catalyst-commits
mailing list