From f21472c3c0dead7221d1c7ca8724661150a08782 Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Sat, 28 Jan 2006 20:25:41 +0000
Subject: [PATCH] Allow the user to type up to 16 chars for the "password
 verification" field. This catches the user that tries to use a 9+ char
 password and doesn't notice that only 8 are allowed in the password field.
 Perhaps an error message stating that the lengths don't match, or the
 verified-password is too long would help.

---
 web/templates/default/newpw.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/templates/default/newpw.inc b/web/templates/default/newpw.inc
index a8ff89cb1d..9d9740e82d 100644
--- a/web/templates/default/newpw.inc
+++ b/web/templates/default/newpw.inc
@@ -17,7 +17,7 @@
       </tr>
       <tr>
         <td>New Password: </td><td><input type="password" name="newpass1" size="8" maxlength="8" value="" />
-      Retype New Password: <input type="password" name="newpass2" size="8" maxlength="8" value="" /></td>
+      Retype New Password: <input type="password" name="newpass2" size="8" maxlength="16" value="" /></td>
       </tr>
       <tr>
         <td colspan="2" align="center"><input type="submit" value="Change Password" /></td>
-- 
GitLab