From f918c8f8a655a4743680437c12bca00478c0481b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20Gyula?= Date: Mon, 25 Mar 2019 21:50:49 +0100 Subject: [PATCH] fix in module-hexaa --- lib/AA/SAML2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AA/SAML2.php b/lib/AA/SAML2.php index 61c329b..0aa440b 100644 --- a/lib/AA/SAML2.php +++ b/lib/AA/SAML2.php @@ -201,7 +201,7 @@ private function getAttributes() if ($nameId->getFormat()) { $nameIdFormat = $nameId->getFormat(); } - $nameIdValue = [$nameId->getValue()]; + $nameIdValue = $nameId->getValue(); SimpleSAML\Logger::info('[aa] Received attribute query for '.$nameIdValue.' (nameIdFormat: '.$nameIdFormat.')');