diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-02 08:00:07 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-02 08:00:07 +0200 |
commit | e1c42c8fcdf74f5a810aae1384808b635cdc51a4 (patch) | |
tree | dd07df6827367b8b63c23fa9ce4744444e835981 | |
parent | 0f2dd8d714a424cf383d925f8b55a098716b0660 (diff) | |
download | bugzilla-e1c42c8fcdf74f5a810aae1384808b635cdc51a4.tar.gz bugzilla-e1c42c8fcdf74f5a810aae1384808b635cdc51a4.tar.xz |
Bug 1200957 - when a non-admin edits a user the 2fa setting is incorrectly reported
-rw-r--r-- | template/en/default/admin/users/userdata.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/users/userdata.html.tmpl b/template/en/default/admin/users/userdata.html.tmpl index c24074df9..72fe4349c 100644 --- a/template/en/default/admin/users/userdata.html.tmpl +++ b/template/en/default/admin/users/userdata.html.tmpl @@ -139,7 +139,7 @@ Disabled [% END %] [% ELSE %] - [% user.mfa ? "Enabled - " _ user.mfa : "Disabled" FILTER html %] + [% otheruser.mfa ? "Enabled - " _ otheruser.mfa : "Disabled" FILTER html %] [% END %] </td> </tr> |