From 6358afcbbfbe381134e6d2841427e7d5ba23a03c Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Fri, 20 Mar 2020 15:28:15 +0100 Subject: [PATCH] Fix the fix --- src/SAML2/HTTPArtifact.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SAML2/HTTPArtifact.php b/src/SAML2/HTTPArtifact.php index 41118fa31..23e26e02e 100644 --- a/src/SAML2/HTTPArtifact.php +++ b/src/SAML2/HTTPArtifact.php @@ -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']);