From ca514f69e5e7f203ec09d8e5fd36ee7ed3ee0453 Mon Sep 17 00:00:00 2001 From: Christophe Maudoux Date: Tue, 11 Aug 2020 22:38:27 +0200 Subject: [PATCH] Fix version (#2274) --- .../lib/Lemonldap/NG/Portal/Auth/SAML.pm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm index be2536481..bf7b80c45 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/SAML.pm @@ -24,9 +24,12 @@ use Lemonldap::NG::Portal::Main::Constants qw( PE_SENDRESPONSE ); -our $VERSION = '2.0.3'; +our $VERSION = '2.0.9'; -extends 'Lemonldap::NG::Portal::Main::Auth', 'Lemonldap::NG::Portal::Lib::SAML'; +extends qw( + Lemonldap::NG::Portal::Main::Auth + Lemonldap::NG::Portal::Lib::SAML +); # INTERFACE @@ -1363,7 +1366,7 @@ sub authLogout { $req->urldc($slo_url); - # Redirect done in Portal/Simple.pm + # Redirect done in Portal return PE_OK; } @@ -1384,7 +1387,7 @@ sub authLogout { $req->postFields->{'RelayState'} = $logout->msg_relayState if ( $logout->msg_relayState ); - # Post done in Portal/Simple.pm + # Post done in Portal $req->steps( [ 'deleteSession', 'autoPost' ] ); return PE_OK; }