diff options
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/main.php | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index 4fd8572029a..3688f2296cd 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -52,17 +52,24 @@ translation('settings'); </label> </p> <p> + <input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend" + class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> /> + <label for="CheckboxUserBackend"> + <?php p($l->t('Show user backend')) ?> + </label> + </p> + <p> <input type="checkbox" name="LastLogin" value="LastLogin" id="CheckboxLastLogin" class="checkbox" <?php if ($_['show_last_login'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxLastLogin"> - <?php p($l->t('Show last log in')) ?> + <?php p($l->t('Show last login')) ?> </label> </p> <p> - <input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend" - class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxUserBackend"> - <?php p($l->t('Show user backend')) ?> + <input type="checkbox" name="EmailAddress" value="EmailAddress" id="CheckboxEmailAddress" + class="checkbox" <?php if ($_['show_email'] === 'true') print_unescaped('checked="checked"'); ?> /> + <label for="CheckboxEmailAddress"> + <?php p($l->t('Show email address')) ?> </label> </p> <p> @@ -73,14 +80,7 @@ translation('settings'); </label> </p> <p class="info-text"> - <?php p($l->t('When the password of the new user is left empty an activation email with a link to set the password is send to the user')) ?> - </p> - <p> - <input type="checkbox" name="EmailAddress" value="EmailAddress" id="CheckboxEmailAddress" - class="checkbox" <?php if ($_['show_email'] === 'true') print_unescaped('checked="checked"'); ?> /> - <label for="CheckboxEmailAddress"> - <?php p($l->t('Show email address')) ?> - </label> + <?php p($l->t('When the password of a new user is left empty, an activation email with a link to set the password is sent.')) ?> </p> </div> </div> |