Skip to content
Snippets Groups Projects
Unverified Commit 0fb1ed81 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Fix one more creation of an Issuer element.

parent 282ad11d
No related branches found
No related tags found
No related merge requests found
......@@ -556,7 +556,10 @@ class Message
\SimpleSAML\Configuration $dstMetadata
) {
$lr = new \SAML2\LogoutResponse();
$lr->setIssuer($srcMetadata->getString('entityid'));
$issuer = new Issuer();
$issuer->setValue($srcMetadata->getString('entityid'));
$issuer->setFormat(Constants::NAMEID_ENTITY);
$lr->setIssuer($issuer);
self::addRedirectSign($srcMetadata, $dstMetadata, $lr);
......
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