diff --git a/www/saml2/idp/SSOService.php b/www/saml2/idp/SSOService.php index f2f4c091106e977fd1904e734853ff9ef7fa4263..14100ef32e1f86197308c126419625aff9ca57cd 100644 --- a/www/saml2/idp/SSOService.php +++ b/www/saml2/idp/SSOService.php @@ -280,15 +280,7 @@ if($needAuth && !$isPassive) { $attributes = $session->getAttributes(); /* Authentication processing operations. */ - if (array_key_exists('AuthProcState', $requestcache)) { - /* Processed earlier, saved in requestcache. */ - $authProcState = $requestcache['AuthProcState']; - - } elseif (isset($authProcState)) { - /* Returned from redirect during processing. */ - $requestcache['AuthProcState'] = $authProcState; - - } else { + if (!isset($authProcState)) { /* Not processed. */ $pc = new SimpleSAML_Auth_ProcessingChain($idpmetadata, $spmetadata, 'idp');