Skip to content

Commit c4a7a48

Browse files
committed
Fix #395 Bad use of on static method validateBinarySign
1 parent 0d2c269 commit c4a7a48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Saml2/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1548,7 +1548,7 @@ public static function validateBinarySign($messageType, $getData, $idpData, $ret
15481548
}
15491549
}
15501550

1551-
if ($objKey->verifySignature($signedQuery, base64_decode($_GET['Signature'])) === 1) {
1551+
if ($objKey->verifySignature($signedQuery, base64_decode($getData['Signature'])) === 1) {
15521552
$signatureValid = true;
15531553
break;
15541554
}

0 commit comments

Comments
 (0)