Skip to content

Commit

Permalink
Fix external identity source title configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis committed Dec 19, 2025
1 parent 3459c4c commit 0f9899d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions app/src/Controller/ExternalIdentitySourcesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 0f9899d

Please sign in to comment.