diff options
author | dave%intrec.com <> | 2000-07-18 23:01:42 +0000 |
---|---|---|
committer | dave%intrec.com <> | 2000-07-18 23:01:42 +0000 |
commit | 6c881f94a00d7a81fc3609179e2945e810e98913 (patch) | |
tree | 5dc2299cf84b6ff2486cf741b14bf62a3e9ab20a /editusers.cgi | |
parent | af986f45c5d82ed054780098898e2b726ffe416f (diff) | |
download | bugs-6c881f94a00d7a81fc3609179e2945e810e98913.tar bugs-6c881f94a00d7a81fc3609179e2945e810e98913.tar.gz bugs-6c881f94a00d7a81fc3609179e2945e810e98913.tar.bz2 bugs-6c881f94a00d7a81fc3609179e2945e810e98913.tar.xz bugs-6c881f94a00d7a81fc3609179e2945e810e98913.zip |
Fix for bug 42037 (user passwords visible in editusers.cgi). Patch
submitted by JRobertson@medevolve.com (Jon Robertson)
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index 243e7ee04..e8fdd62c1 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -109,7 +109,7 @@ sub EmitFormElements ($$$$$$$) if ($editall) { print "</TR><TR>\n"; print " <TH ALIGN=\"right\">Password:</TH>\n"; - print " <TD><INPUT SIZE=16 MAXLENGTH=16 NAME=\"password\" VALUE=\"$password\"></TD>\n"; + print " <TD><INPUT TYPE=\"PASSWORD\" SIZE=16 MAXLENGTH=16 NAME=\"password\" VALUE=\"$password\"></TD>\n"; print "</TR><TR>\n"; print " <TH ALIGN=\"right\">Email notification:</TH>\n"; |