From 0f9899d6c88c602ae0883eec63d31998ab04f736 Mon Sep 17 00:00:00 2001 From: Ioannis Igoumenos Date: Fri, 19 Dec 2025 10:13:09 +0000 Subject: [PATCH] Fix external identity source title configuration --- app/src/Controller/ExternalIdentitySourcesController.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/src/Controller/ExternalIdentitySourcesController.php b/app/src/Controller/ExternalIdentitySourcesController.php index f2587971b..2a4c85ca9 100644 --- a/app/src/Controller/ExternalIdentitySourcesController.php +++ b/app/src/Controller/ExternalIdentitySourcesController.php @@ -187,9 +187,11 @@ public function search(string $id) { $this->set('vv_search_attrs', $this->ExternalIdentitySources->searchableAttributes((int)$id)); - [$title, , ] = StringUtilities::entityAndActionToTitle(null, - $this->getName(), - $this->request->getParam('action')); + [$title, , ] = StringUtilities::entityAndActionToTitle( + null, + null, + $this->getName() . '.search', + ); $this->set('vv_title', $title); }