diff options
author | timeless%mozdev.org <> | 2005-12-18 16:09:38 +0100 |
---|---|---|
committer | timeless%mozdev.org <> | 2005-12-18 16:09:38 +0100 |
commit | 800f5fe4aed0b9ff055aae2231f1204a6db72397 (patch) | |
tree | eb94d83ea333c4da2fc8c68f8335f58a971b32c5 | |
parent | 9aee5dbf653f86049576328dd1d811d8200c2910 (diff) | |
download | bugzilla-800f5fe4aed0b9ff055aae2231f1204a6db72397.tar.gz bugzilla-800f5fe4aed0b9ff055aae2231f1204a6db72397.tar.xz |
Bug 311512 When editing a user entry on Bugzilla, the "Real Name" field is filled in incorrectly.
r=justdave a=justdave
-rw-r--r-- | template/en/default/admin/users/userdata.html.tmpl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index 96c9df515..672e180bf 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -46,6 +46,7 @@ <td> [% IF editusers %] <input size="64" maxlength="255" name="name" + autocomplete="off" id="name" value="[% otheruser.name FILTER html %]" /> [% IF editform %] <input type="hidden" name="nameold" @@ -61,6 +62,7 @@ <th><label for="password">Password:</label></th> <td> <input type="password" size="16" maxlength="16" name="password" + autocomplete="off" id="password" value="" /> [% IF editform %]<br /> (Enter new password to change.) |