From c9ac5339a8aecb6cafec4bee3540d6cf35a3c8fb Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Wed, 16 Aug 2023 12:55:05 -0700 Subject: [PATCH] Removed number in person picker --- Controller/GrouperGroupsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/GrouperGroupsController.php b/Controller/GrouperGroupsController.php index d3bbdbc..03f0146 100644 --- a/Controller/GrouperGroupsController.php +++ b/Controller/GrouperGroupsController.php @@ -347,7 +347,7 @@ public function findSubscriber() } foreach($emailArr as $e) { if($e['type'] == $pickerEmailType) { - $email = $e['mail'] . ' ' . $pickerDisplayTypes; + $email = $e['mail']; break; } }