From 55d23d87f66c10ceb4fe718cace2034a9822a275 Mon Sep 17 00:00:00 2001 From: Dick Visser Date: Thu, 30 Jan 2025 12:02:15 +0100 Subject: [PATCH] Also take urn:oasis:names:tc:SAML:attribute:subject-id into account for established federated-user ID --- src/Store/SQLStore.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Store/SQLStore.php b/src/Store/SQLStore.php index 9e1a42e..dcd17e1 100644 --- a/src/Store/SQLStore.php +++ b/src/Store/SQLStore.php @@ -492,6 +492,11 @@ public function addIdentifiableAttributes(): self ':entity_id' => $this->getEntityidId(), ':aorder' => 4 ]); + $stmt->execute([ + ':attribute_id' => 458, + ':entity_id' => $this->getEntityidId(), + ':aorder' => 5 + ]); return $this; }