From 0babf4c6c31bbcdf9128fe3e43fada35c2ad6073 Mon Sep 17 00:00:00 2001 From: Maxime Besson Date: Tue, 21 May 2019 17:30:37 +0200 Subject: [PATCH] Fix non-sso session removal in SoapServer closes #1762 --- .../lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm index e842c9292..21e07a547 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Plugins/SOAPServer.pm @@ -384,7 +384,7 @@ sub deleteSession { my ( $self, $req, $id ) = @_; die('id parameter is required') unless ($id); - my $session = $self->p->getApacheSession($id); + my $session = $self->p->getApacheSession($id, kind => ''); return 0 unless ($session);