diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-10 17:51:28 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-10 17:51:28 +0100 |
commit | 78efabb0730d250da387debf12418a3b5808018c (patch) | |
tree | 9a687c5807177fc22a51969273be7c96022a59b4 /apps/settings/templates | |
parent | 5b53b6f977497c359385ce6b324dfc2c2a68dc90 (diff) | |
download | nextcloud-server-78efabb0730d250da387debf12418a3b5808018c.tar.gz nextcloud-server-78efabb0730d250da387debf12418a3b5808018c.zip |
Fix CS hopefully
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/templates')
-rw-r--r-- | apps/settings/templates/settings/admin/sharing.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/templates/settings/admin/sharing.php b/apps/settings/templates/settings/admin/sharing.php index d7c24943b24..65e84d29120 100644 --- a/apps/settings/templates/settings/admin/sharing.php +++ b/apps/settings/templates/settings/admin/sharing.php @@ -191,12 +191,12 @@ <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 /> </p> <p id="shareapi_restrict_user_enumeration_full_match_setting" class="indent <?php if ($_['shareAPIEnabled'] === 'no') { - p('hidden'); - }?>"> + p('hidden'); +}?>"> <input type="checkbox" name="shareapi_restrict_user_enumeration_full_match" value="1" id="shareapi_restrict_user_enumeration_full_match" class="checkbox" <?php if ($_['restrictUserEnumerationFullMatch'] === 'yes') { - print_unescaped('checked="checked"'); - } ?> /> + print_unescaped('checked="checked"'); +} ?> /> <label for="shareapi_restrict_user_enumeration_full_match"><?php p($l->t('Allow username autocompletion when entering the full name or email address (ignoring missing phonebook match and being in the same group)'));?></label><br /> </p> |