From c6dcc746ce17e2636a0aa9ff78c1d66a6eb51511 Mon Sep 17 00:00:00 2001 From: Benn Oshrin Date: Thu, 23 Oct 2025 10:18:09 -0400 Subject: [PATCH] Fix handling of integer source keys when rendering EIS search results (NOJIRA) --- app/templates/ExternalIdentitySources/search.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/templates/ExternalIdentitySources/search.php b/app/templates/ExternalIdentitySources/search.php index 094ae6b0a..4c3674b2e 100644 --- a/app/templates/ExternalIdentitySources/search.php +++ b/app/templates/ExternalIdentitySources/search.php @@ -133,7 +133,8 @@ Html->link( - $source_key, + // Cast to string in case we have a numeric source key + (string)$source_key, [ 'action' => 'retrieve', $this->request->getParam('pass')[0],