[Catalyst-commits] r12710 -
Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Realm
stephan48 at dev.catalyst.perl.org
stephan48 at dev.catalyst.perl.org
Fri Jan 22 21:30:21 GMT 2010
Author: stephan48
Date: 2010-01-22 21:30:20 +0000 (Fri, 22 Jan 2010)
New Revision: 12710
Modified:
Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Realm/Progressive.pm
Log:
Fixed RT Bug 47106; Code used the wrong Object to Retrieve authinfo_munge
Modified: Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Realm/Progressive.pm
===================================================================
--- Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Realm/Progressive.pm 2010-01-22 19:20:02 UTC (rev 12709)
+++ Catalyst-Plugin-Authentication/0.10000/trunk/lib/Catalyst/Authentication/Realm/Progressive.pm 2010-01-22 21:30:20 UTC (rev 12710)
@@ -132,7 +132,7 @@
unless $realm;
my $auth = { %$authinfo };
$auth->{realm} ||= $realm->name;
- if ( my $info = $realm->config->{authinfo_munge}->{$realm->name} ) {
+ if ( my $info = $self->config->{authinfo_munge}->{$realm->name} ) {
$auth = Catalyst::Utils::merge_hashes($auth, $info);
}
if ( my $obj = $realm->authenticate( $c, $auth ) ) {
More information about the Catalyst-commits
mailing list