aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-03-06 18:06:08 +0100
committerMorris Jobke <hey@morrisjobke.de>2017-04-04 16:49:43 -0500
commit602819d6ab22f1795bd28dad01fc13c893ad46dd (patch)
treed0e35f9a7923e053a04428d3ed1d1f916ec085ea
parentfa4107893de4e94020dc1b3182cfea969b5db1a6 (diff)
downloadnextcloud-server-602819d6ab22f1795bd28dad01fc13c893ad46dd.tar.gz
nextcloud-server-602819d6ab22f1795bd28dad01fc13c893ad46dd.zip
correct sorting of user management settings, wording
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
-rw-r--r--settings/templates/users/main.php26
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>