diff options
author | flop25 <flop25@piwigo.org> | 2014-08-10 15:55:34 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2014-08-10 15:55:34 +0000 |
commit | b673b2b2847ecb8a9445a011239cbc7d57758cd7 (patch) | |
tree | b6b5213839ffeaa0313d1c1a34cc426899b46d17 /admin/themes | |
parent | d1d3174245f348dbaee2163a87c8daee970a0e0d (diff) |
bug:3090
don't restrict the maxlength of the password
git-svn-id: http://piwigo.org/svn/trunk@29194 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes')
-rw-r--r-- | admin/themes/default/template/upgrade.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/upgrade.tpl b/admin/themes/default/template/upgrade.tpl index f126d06a6..a29078716 100644 --- a/admin/themes/default/template/upgrade.tpl +++ b/admin/themes/default/template/upgrade.tpl @@ -171,11 +171,11 @@ input[type="text"]:focus, input[type="password"]:focus, select:focus { <table> <tr> <td>{'Username'|@translate}</td> - <td><input type="text" name="username" id="username" size="25" maxlength="40" style="width: 150px;"></td> + <td><input type="text" name="username" id="username" size="20" maxlength="50" style="width: 150px;"></td> </tr> <tr> <td>{'Password'|@translate}</td> - <td><input type="password" name="password" id="password" size="25" maxlength="25" style="width: 150px;"></td> + <td><input type="password" name="password" id="password" style="width: 150px;"></td> </tr> </table> {/if} |