From ee1b33ab2e730f46eb69f169586b6c157a98545d Mon Sep 17 00:00:00 2001 From: Dick Visser Date: Tue, 28 Mar 2017 18:41:53 +0200 Subject: [PATCH] Add support for eduPersonUniqueID. This is dependent on the attribute being available in the database with this specific ID (259), and also the attributemaps from SimpleSAMLphp. --- lib/AccountLinker/Store/SQLStore.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/AccountLinker/Store/SQLStore.php b/lib/AccountLinker/Store/SQLStore.php index 1045c9c..06c89fb 100644 --- a/lib/AccountLinker/Store/SQLStore.php +++ b/lib/AccountLinker/Store/SQLStore.php @@ -425,6 +425,11 @@ public function addIdentifiableAttributes() ':entity_id' => $this->_getEntityidId(), ':aorder' => 3 )); + $stmt->execute(array( + ':attribute_id' => 259, + ':entity_id' => $this->_getEntityidId(), + ':aorder' => 4 + )); return $this; }