We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cd6aa commit 8f00013Copy full SHA for 8f00013
modules/saml/src/Auth/Source/SP.php
@@ -596,6 +596,8 @@ private function startSSO2(Configuration $idpMetadata, array $state): Response
596
$idpEntry = [];
597
if (isset($state['IDPList'])) {
598
$idpList = $state['IDPList'];
599
+ } elseif (isset($state['saml:IDPList'])) {
600
+ $idpList = $state['saml:IDPList'];
601
} elseif (!empty($this->metadata->getOptionalArray('IDPList', []))) {
602
foreach ($this->metadata->getArray('IDPList') as $entry) {
603
$idpEntry[] = new IDPEntry($entry);
0 commit comments