diff options
| author | Artem Anisimov <aanisimov@inbox.ru> | 2010-09-14 20:49:14 +0200 |
|---|---|---|
| committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-09-14 20:49:14 +0200 |
| commit | 8042dfb30a65cbc2430e3dac0c854c0b70f3526a (patch) | |
| tree | efdbf05e5ef1ba578a69f8bfa75b525e3ad966a9 /template/en/default/admin/users | |
| parent | 1906ffa9b738d99559f48262a52549da4f2c1e2d (diff) | |
| download | bugs-8042dfb30a65cbc2430e3dac0c854c0b70f3526a.tar bugs-8042dfb30a65cbc2430e3dac0c854c0b70f3526a.tar.gz bugs-8042dfb30a65cbc2430e3dac0c854c0b70f3526a.tar.bz2 bugs-8042dfb30a65cbc2430e3dac0c854c0b70f3526a.tar.xz bugs-8042dfb30a65cbc2430e3dac0c854c0b70f3526a.zip | |
Bug 595664: Maximum password length is hardcoded in the UI when editing user accounts
r/a=LpSolit
Diffstat (limited to 'template/en/default/admin/users')
| -rw-r--r-- | template/en/default/admin/users/userdata.html.tmpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index d81529b48..5df1f7c8c 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -61,9 +61,8 @@ <tr> <th><label for="password">Password:</label></th> <td> - <input type="password" size="16" maxlength="16" name="password" - autocomplete="off" - id="password" value="" /> + <input type="password" size="16" name="password" id="password" + value="" autocomplete="off" /> [% IF editform %]<br /> (Enter new password to change.) [% END %] |
