We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c83adc2 commit 8782b75Copy full SHA for 8782b75
1 file changed
lib/Auth/Process/SFO.php
@@ -62,7 +62,8 @@ public function process(&$state)
62
throw new Exception("Subjectid " . var_export($subjectid,true) . " does not start with urn:collab:person:");
63
}
64
65
- $nameid = \SAML2\XML\saml\NameID::fromArray(['Value' => $subjectid]);
+ $nameid = new \SAML2\XML\saml\NameID();
66
+ $nameid->setValue($subjectid);
67
68
// Start the authentication request
69
$this->startSFO($this->idpMetadata, $nameid, $samlstateid);
0 commit comments