mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Fix user name length limit on the account edit form
Change the maxlength attribute of the user name input field such that it corresponds to the username_max_len option. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
9bbbd665e7
commit
f9ac67f691
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
<fieldset>
|
||||
<p>
|
||||
<label for="id_username"><?= __("Username") ?>:</label>
|
||||
<input type="text" size="30" maxlength="64" name="U" id="id_username" value="<?= htmlspecialchars($U,ENT_QUOTES) ?>" /> (<?= __("required") ?>)
|
||||
<input type="text" size="30" maxlength="<?= config_get_int('options', 'username_max_len'); ?>" name="U" id="id_username" value="<?= htmlspecialchars($U,ENT_QUOTES) ?>" /> (<?= __("required") ?>)
|
||||
</p>
|
||||
<?php
|
||||
# Only TUs or Devs can promote/demote/suspend a user
|
||||
|
|
Loading…
Add table
Reference in a new issue