diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-10-24 17:09:37 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-01-21 12:04:03 +0100 |
commit | 27bc467a62c20baff5bf973fa23f422cd836df9b (patch) | |
tree | 4fc7024261c4568fff4bc0c22d6bb1b558a8abac /install/ui/src/freeipa/ipa.js | |
parent | df7ffc53cff211aab9c982afb62b2794b6ec0d4b (diff) | |
download | freeipa-27bc467a62c20baff5bf973fa23f422cd836df9b.tar.gz freeipa-27bc467a62c20baff5bf973fa23f422cd836df9b.tar.xz freeipa-27bc467a62c20baff5bf973fa23f422cd836df9b.zip |
username_r in password reset part of unauthorized dialog should be enabled as well
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/ipa.js')
-rw-r--r-- | install/ui/src/freeipa/ipa.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js index 603f3b4af..0a3d1f240 100644 --- a/install/ui/src/freeipa/ipa.js +++ b/install/ui/src/freeipa/ipa.js @@ -2205,7 +2205,7 @@ IPA.unauthorized_dialog = function(spec) { that.show_reset_form = function() { that.current_view = 'reset'; - that.enable_fields(['new_password', 'verify_password']); + that.enable_fields(['username_r', 'new_password', 'verify_password']); that.session_form.css('display', 'none'); that.reset_form.css('display', 'block'); that.display_buttons(['reset', 'cancel']); |