[aur-dev] [PATCH 1/2] Fix user name length limit on the account edit form

Lukas Fleischer lfleischer at archlinux.org
Sun Oct 25 09:59:36 UTC 2015


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 at archlinux.org>
---
 web/template/account_edit_form.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php
index 16655c0..b25ff39 100644
--- a/web/template/account_edit_form.php
+++ b/web/template/account_edit_form.php
@@ -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
-- 
2.6.2


More information about the aur-dev mailing list