LEMONLDAP::NG : Little bug correction in Portal/CDA.pm

This commit is contained in:
Xavier Guimard 2007-05-22 08:22:54 +00:00
parent 57bedd0ce9
commit 9216dc8ec7
3 changed files with 6 additions and 2 deletions

View File

@ -2,8 +2,9 @@ lemonldap-ng (0.8.2.2) unstable; urgency=low
* Debian packages modifications due to Lintian control.
* New Debian package: lemonldap-ng-doc
* Little bug correction in Portal/CDA.pm
-- Xavier Guimard <x.guimard@free.fr> Tue, 15 May 2007 22:38:59 +0200
-- Xavier Guimard <x.guimard@free.fr> Tue, 22 May 2007 10:18:43 +0200
lemonldap-ng (0.8.2.1) unstable; urgency=low

View File

@ -0,0 +1,3 @@
debian/README.Debian
doc/*
README

View File

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