LEMONLDAP::NG : bug correction in Cross Domain Authentication

This commit is contained in:
Xavier Guimard 2007-03-15 06:51:14 +00:00
parent 63f7140a28
commit 05aa5f7e06
2 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,10 @@
Revision history for Perl extension Lemonldap::NG::Portal.
0.65 Wed Mar 14 7:10:40 2007
0.65 Wed Mar 15 7:38:40 2007
- New feature: single logout
- bug correction: existingSessions was never called
- bug corrections:
* existingSessions was never called
* Typo in Portal/CDA.pm
0.64 Fri Mar 9 17:49:44
- Delete of DBI.pm which is no more in use

View File

@ -29,7 +29,7 @@ sub autoRedirect {
my $tmp = $self->{domain};
$self->{urldc} .= "?" . $self->{cookieName} . "=" . $self->{id}
if ( $self->{urldc} !~ /$tmp$/oi );
return $self->SUPER::autoredirect(@_);
return $self->SUPER::autoRedirect(@_);
}
1;