mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-21 14:50:08 +03:00
B #4856: Fix admin user creation with ldap driver
This commit is contained in:
parent
37de3f0895
commit
1973d9b176
@ -198,7 +198,7 @@ define(function(require) {
|
||||
|
||||
$('#'+that.idPrefix+'_username',context).attr('disabled','disabled').removeAttr('required');
|
||||
$('#'+that.idPrefix+'_pass',context).attr('disabled','disabled').removeAttr('required');
|
||||
$('#'+that.idPrefix+'_confirm_password',context).attr('disabled','disabled').removeAttr('required');
|
||||
$('#'+that.idPrefix+'_confirm_password',context).attr('disabled','disabled');
|
||||
$('#'+that.idPrefix+'_driver',context).attr('disabled','disabled').removeAttr('required');
|
||||
$('#'+that.idPrefix+'_custom_auth',context).attr('disabled','disabled').removeAttr('required');
|
||||
}
|
||||
@ -212,7 +212,7 @@ define(function(require) {
|
||||
|
||||
$('#'+that.idPrefix+'_username',context).removeAttr("disabled").attr('required', '');
|
||||
$('#'+that.idPrefix+'_pass',context).removeAttr("disabled").attr('required', '');
|
||||
$('#'+that.idPrefix+'_confirm_password',context).removeAttr("disabled").attr('required', '');
|
||||
$('#'+that.idPrefix+'_confirm_password',context).removeAttr("disabled");
|
||||
$('#'+that.idPrefix+'_driver',context).removeAttr("disabled").attr('required', '');
|
||||
$('#'+that.idPrefix+'_custom_auth',context).removeAttr("disabled");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user