Remove character limit on password length

As all new passwords are hashed and therefore stored in the database
at the same length, this limitation is no longer needed.

Fixes FS#31855

Signed-off-by: canyonknight <canyonknight@gmail.com>
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
canyonknight 2012-10-09 16:37:18 -04:00 committed by Lukas Fleischer
parent e9a0272118
commit 24a8452880
4 changed files with 5 additions and 6 deletions

View file

@ -60,13 +60,13 @@
<p>
<label for="id_passwd1"><?= __("Password") ?>:</label>
<input type="password" size="30" maxlength="32" name="P" id="id_passwd1" value="<?= $P ?>" />
<input type="password" size="30" name="P" id="id_passwd1" value="<?= $P ?>" />
<?php if ($A != "UpdateAccount"): print " (".__("required").")"; endif; ?>
</p>
<p>
<label for="id_passwd2"><?= __("Re-type password") ?>:</label>
<input type="password" size="30" maxlength="32" name="C" id="id_passwd2" value="<?= $C ?>" />
<input type="password" size="30" name="C" id="id_passwd2" value="<?= $C ?>" />
<?php if ($A != "UpdateAccount"): print " (".__("required").")"; endif; ?>
</p>