correct sorting of user management settings, wording
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
fa4107893d
commit
602819d6ab
1 changed files with 15 additions and 15 deletions
|
@ -51,13 +51,6 @@ translation('settings');
|
||||||
<?php p($l->t('Show storage location')) ?>
|
<?php p($l->t('Show storage location')) ?>
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</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')) ?>
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
<p>
|
||||||
<input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend"
|
<input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend"
|
||||||
class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> />
|
class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> />
|
||||||
|
@ -65,6 +58,20 @@ translation('settings');
|
||||||
<?php p($l->t('Show user backend')) ?>
|
<?php p($l->t('Show user backend')) ?>
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</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 login')) ?>
|
||||||
|
</label>
|
||||||
|
</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>
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<input type="checkbox" name="MailOnUserCreate" value="MailOnUserCreate" id="CheckboxMailOnUserCreate"
|
<input type="checkbox" name="MailOnUserCreate" value="MailOnUserCreate" id="CheckboxMailOnUserCreate"
|
||||||
class="checkbox" <?php if ($_['send_email'] === 'true') print_unescaped('checked="checked"'); ?> />
|
class="checkbox" <?php if ($_['send_email'] === 'true') print_unescaped('checked="checked"'); ?> />
|
||||||
|
@ -73,14 +80,7 @@ translation('settings');
|
||||||
</label>
|
</label>
|
||||||
</p>
|
</p>
|
||||||
<p class="info-text">
|
<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')) ?>
|
<?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>
|
|
||||||
<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>
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue