Skip to content
Snippets Groups Projects
Unverified Commit 169ed596 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Use strict comparisons

parent 01865bd8
No related branches found
No related tags found
No related merge requests found
...@@ -253,7 +253,7 @@ class SP extends Source ...@@ -253,7 +253,7 @@ class SP extends Source
$requesterID = []; $requesterID = [];
/* Only check for real info for Scoping element if we are going to send Scoping element */ /* Only check for real info for Scoping element if we are going to send Scoping element */
if ($this->disable_scoping != true && $idpMetadata->getBoolean('disable_scoping', false) != true) { if ($this->disable_scoping !== true && $idpMetadata->getBoolean('disable_scoping', false) !== true) {
if (isset($state['saml:IDPList'])) { if (isset($state['saml:IDPList'])) {
$IDPList = $state['saml:IDPList']; $IDPList = $state['saml:IDPList'];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment