mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 10:00:33 -04:00
allow empty user-dn and password
help tooltip shows completely right: leave both blank for anonyous access. But if you leave it blank js doesn't allow you to edit any other settings...
This commit is contained in:
parent
b767bbcdda
commit
5b9bdaadaa
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ var LdapWizard = {
|
|||
pwd = $('#ldap_agent_password').val();
|
||||
base = $('#ldap_base').val();
|
||||
|
||||
if(host && port && agent && pwd && base) {
|
||||
if(host && port && base) {
|
||||
$('.ldap_action_continue').removeAttr('disabled');
|
||||
$('#ldapSettings').tabs('option', 'disabled', []);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue