From 6ef26b1f4a32943b7a584ad7e2f611556a4e46cb Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Sun, 31 May 2015 23:44:29 +0200 Subject: [PATCH] Bugfix. Solves #213. --- modules/saml/lib/IdP/SAML1.php | 2 +- modules/saml/lib/IdP/SAML2.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/saml/lib/IdP/SAML1.php b/modules/saml/lib/IdP/SAML1.php index be2e1de40..b4956fd9f 100644 --- a/modules/saml/lib/IdP/SAML1.php +++ b/modules/saml/lib/IdP/SAML1.php @@ -69,7 +69,7 @@ class sspmod_saml_IdP_SAML1 { * Less than five seconds has passed since we were * here the last time. Cookies are probably disabled. */ - \SimpleSAML\Utils\HTTP::checkCookie(\SimpleSAML\Utils\HTTP::getSelfURL()); + \SimpleSAML\Utils\HTTP::checkSessionCookie(\SimpleSAML\Utils\HTTP::getSelfURL()); } } diff --git a/modules/saml/lib/IdP/SAML2.php b/modules/saml/lib/IdP/SAML2.php index e22edad12..40afece41 100644 --- a/modules/saml/lib/IdP/SAML2.php +++ b/modules/saml/lib/IdP/SAML2.php @@ -247,7 +247,7 @@ class sspmod_saml_IdP_SAML2 { * Less than five seconds has passed since we were * here the last time. Cookies are probably disabled. */ - \SimpleSAML\Utils\HTTP::checkCookie(\SimpleSAML\Utils\HTTP::getSelfURL()); + \SimpleSAML\Utils\HTTP::checkSessionCookie(\SimpleSAML\Utils\HTTP::getSelfURL()); } } -- GitLab