Skip to content

Commit

Permalink
Fix the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen authored Mar 20, 2020
1 parent d1a9320 commit 6358afc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SAML2/HTTPArtifact.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ public function receive(): Message
$ar = new ArtifactResolve();

/* Set the request attributes */
$issuer = new Issuer($this->spMetadata->getString('entityid'));
$issuer = new Issuer();
$issuer->setValue($this->spMetadata->getString('entityid'));

$ar->setIssuer($issuer);
$ar->setArtifact($_REQUEST['SAMLart']);
Expand Down

0 comments on commit 6358afc

Please sign in to comment.