diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-29 17:04:32 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-29 17:04:32 +0200 |
commit | 6ae3de247df3e27db1e1768985fed37143fbfd4c (patch) | |
tree | 93c9a1eb9a55d9739814c8304a6982c9d83d4e0b /apps/settings/templates | |
parent | f8bad860976beabfe704dd0fe6b7c8f7aaa68212 (diff) | |
download | nextcloud-server-6ae3de247df3e27db1e1768985fed37143fbfd4c.tar.gz nextcloud-server-6ae3de247df3e27db1e1768985fed37143fbfd4c.zip |
Fix working for phone number integration
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/templates')
-rw-r--r-- | apps/settings/templates/settings/admin/sharing.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/templates/settings/admin/sharing.php b/apps/settings/templates/settings/admin/sharing.php index 0fcf79fc7c4..9938955ae3d 100644 --- a/apps/settings/templates/settings/admin/sharing.php +++ b/apps/settings/templates/settings/admin/sharing.php @@ -183,12 +183,12 @@ <?php if ($_['restrictUserEnumerationToPhone'] === 'yes') { print_unescaped('checked="checked"'); } ?> /> - <label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phonebook matches'));?></label><br /> + <label for="shareapi_restrict_user_enumeration_to_phone"><?php p($l->t('Allow username autocompletion to users based on phone number integration'));?></label><br /> </p> <p id="shareapi_restrict_user_enumeration_combinewarning_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no' || $_['allowShareDialogUserEnumeration'] === 'no') { p('hidden'); }?>"> - <em><?php p($l->t('If autocompletion "same group" and "phonebook matches" are enabled a match in either is enough to show the user.'));?></em><br /> + <em><?php p($l->t('If autocompletion "same group" and "phone number integration" are enabled a match in either is enough to show the user.'));?></em><br /> </p> <p id="shareapi_restrict_user_enumeration_full_match_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no') { p('hidden'); |