diff options
author | ghendricks%novell.com <> | 2007-05-15 23:28:16 +0200 |
---|---|---|
committer | ghendricks%novell.com <> | 2007-05-15 23:28:16 +0200 |
commit | 3529e98d63f3e15e04d18fdb608aecdcb9825113 (patch) | |
tree | 53b465022896379cb6f93969c0ab005c4a6048f2 | |
parent | f65619b0235e24eb5df01fe82c90a45b2ae985e6 (diff) | |
download | bugzilla-3529e98d63f3e15e04d18fdb608aecdcb9825113.tar.gz bugzilla-3529e98d63f3e15e04d18fdb608aecdcb9825113.tar.xz |
Bug 380416: template/en/default/admin/users/userdata.html.tmpl should honor can_change_password()
Patch by Vance Baarda <vrb@novell.com>
r=mkanat, a=mkanat
-rw-r--r-- | template/en/default/admin/users/userdata.html.tmpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index e7afe66bb..befc87ed0 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -51,7 +51,14 @@ [% END %] </td> </tr> + +[%# XXX This condition (can_change_password) will cause a problem + # if we ever have a login system that can create accounts through + # createaccount.cgi but can't change passwords. + #%] + [% IF editusers %] + [% IF user.authorizer.can_change_password %] <tr> <th><label for="password">Password:</label></th> <td> @@ -63,6 +70,7 @@ [% END %] </td> </tr> + [% END %] <tr> <th><label for="disable_mail">[% terms.Bug %]mail Disabled:</label></th> <td> |