From e8479d0caf6e57b959e668c4a931fcd8a3ccf90d Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 4 Jan 2023 09:20:23 +0100 Subject: [PATCH] Add missing comma Leads to user issues https://github.com/nextcloud/server/issues/34841#issuecomment-1368470070 Signed-off-by: Thomas Citharel --- admin_manual/configuration_user/profile_configuration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/configuration_user/profile_configuration.rst b/admin_manual/configuration_user/profile_configuration.rst index 3c948d65b..05db50f15 100644 --- a/admin_manual/configuration_user/profile_configuration.rst +++ b/admin_manual/configuration_user/profile_configuration.rst @@ -84,8 +84,8 @@ If you'd like to override the value for one or several default visibility scopes .. code-block:: php 'account_manager.default_property_scope' => [ - \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE + \OCP\Accounts\IAccountManager::PROPERTY_PHONE => \OCP\Accounts\IAccountManager::SCOPE_PRIVATE, \OCP\Accounts\IAccountManager::PROPERTY_ROLE => \OCP\Accounts\IAccountManager::SCOPE_FEDERATED ] -In the above example, the phone and role properties are respectively overwritten to the private and federated scopes. Note that these changes will only apply to *new* users, not existing ones. \ No newline at end of file +In the above example, the phone and role properties are respectively overwritten to the private and federated scopes. Note that these changes will only apply to *new* users, not existing ones.