diff options
-rw-r--r-- | apps/provisioning_api/lib/Controller/UsersController.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/provisioning_api/lib/Controller/UsersController.php b/apps/provisioning_api/lib/Controller/UsersController.php index 65789e14b7f..f5993e3aa5c 100644 --- a/apps/provisioning_api/lib/Controller/UsersController.php +++ b/apps/provisioning_api/lib/Controller/UsersController.php @@ -604,6 +604,10 @@ class UsersController extends AUserData { } /** + * @NoAdminRequired + * @NoSubAdminRequired + * @PasswordConfirmationRequired + * * @throws OCSException */ public function editUserMultiValue( @@ -663,7 +667,7 @@ class UsersController extends AUserData { $mailCollection = $userAccount->getPropertyCollection(IAccountManager::COLLECTION_EMAIL); $targetProperty = null; foreach ($mailCollection->getProperties() as $property) { - if ($property->getValue() === $value) { + if ($property->getValue() === $key) { $targetProperty = $property; break; } |