From 5afaf3d06ccea7684a7be459f40d3d3ce0369e73 Mon Sep 17 00:00:00 2001 From: Joas Schilling <coding@schilljs.com> Date: Wed, 10 Mar 2021 17:51:28 +0100 Subject: [PATCH] Fix CS hopefully Signed-off-by: Joas Schilling <coding@schilljs.com> --- apps/settings/templates/settings/admin/sharing.php | 8 ++++---- 1 file 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> -- GitLab