This commit is contained in:
Christophe Maudoux 2021-10-29 23:03:45 +02:00
parent c8464136d7
commit d54c897580

View File

@ -9,7 +9,7 @@ use Lemonldap::NG::Portal::Main::Constants qw(
PE_SENDRESPONSE PE_SENDRESPONSE
); );
our $VERSION = '2.0.12'; our $VERSION = '2.0.14';
extends 'Lemonldap::NG::Portal::Main::Plugin'; extends 'Lemonldap::NG::Portal::Main::Plugin';
@ -157,7 +157,7 @@ sub storeBrowser {
# Then delete authentication methods from "steps" array. # Then delete authentication methods from "steps" array.
sub check { sub check {
my ( $self, $req ) = @_; my ( $self, $req ) = @_;
if ( my $cid = $req->cookies->{ $self->cookieName() } ) { if ( my $cid = $req->cookies->{ $self->cookieName } ) {
my $ps = Lemonldap::NG::Common::Session->new( my $ps = Lemonldap::NG::Common::Session->new(
storageModule => $self->conf->{globalStorage}, storageModule => $self->conf->{globalStorage},
storageModuleOptions => $self->conf->{globalStorageOptions}, storageModuleOptions => $self->conf->{globalStorageOptions},
@ -231,7 +231,7 @@ sub logout {
my ( $self, $req ) = @_; my ( $self, $req ) = @_;
$req->addCookie( $req->addCookie(
$self->p->cookie( $self->p->cookie(
name => $self->cookieName(), name => $self->cookieName,
value => 0, value => 0,
expires => 'Wed, 21 Oct 2015 00:00:00 GMT', expires => 'Wed, 21 Oct 2015 00:00:00 GMT',
secure => $self->conf->{securedCookie}, secure => $self->conf->{securedCookie},