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 af4126b commit 6b6a618Copy full SHA for 6b6a618
lib/Saml2/Response.php
@@ -236,7 +236,7 @@ public function isValid($requestId = null)
236
$scnData = $subjectConfirmationDataNodes->item(0);
237
if ($scnData->hasAttribute('InResponseTo')) {
238
$inResponseTo = $scnData->getAttribute('InResponseTo');
239
- if ($responseInResponseTo != $inResponseTo) {
+ if (isset($responseInResponseTo) && $responseInResponseTo != $inResponseTo) {
240
continue;
241
}
242
0 commit comments