diff options
author | Marcel Korpel <marcel.korpel@gmail.com> | 2016-01-30 01:04:23 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-01-30 11:15:17 +0100 |
commit | 6b766b8e77a633e147a697aaf9f86ad71bcf3dfb (patch) | |
tree | 8ec1f766093acf5669ab3dabcd602cca1294866b /web/template/account_edit_form.php | |
parent | 6d6df72183970040839cc6c4e6066cc8a6094d65 (diff) | |
download | aurweb-6b766b8e77a633e147a697aaf9f86ad71bcf3dfb.tar.xz |
Shorten maxlength of email input fields to 254 characters
After 24734d0 (Shorten Email column to 254 characters, 2015-11-12) the
maximum length of the input fields should be shortened, too.
Signed-off-by: Marcel Korpel <marcel.korpel@gmail.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/account_edit_form.php')
-rw-r--r-- | web/template/account_edit_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php index 28da203..cb0fa33 100644 --- a/web/template/account_edit_form.php +++ b/web/template/account_edit_form.php @@ -69,7 +69,7 @@ <p> <label for="id_email"><?= __("Email Address") ?>:</label> - <input type="text" size="30" maxlength="256" name="E" id="id_email" value="<?= htmlspecialchars($E,ENT_QUOTES) ?>" /> (<?= __("required") ?>) + <input type="text" size="30" maxlength="254" name="E" id="id_email" value="<?= htmlspecialchars($E,ENT_QUOTES) ?>" /> (<?= __("required") ?>) </p> <p> |