diff options
author | miicha <pfitzner@physik.hu-berlin.de> | 2013-11-05 01:24:20 +0100 |
---|---|---|
committer | miicha <pfitzner@physik.hu-berlin.de> | 2013-11-05 01:24:20 +0100 |
commit | 5b9bdaadaac4e2ff205d9428d4843e3eca40297f (patch) | |
tree | cb5520791c71ddedcf3970568badb17f43305221 /apps/user_ldap/js | |
parent | b767bbcddacc62741e8bed585c080092448bb829 (diff) | |
download | nextcloud-server-5b9bdaadaac4e2ff205d9428d4843e3eca40297f.tar.gz nextcloud-server-5b9bdaadaac4e2ff205d9428d4843e3eca40297f.zip |
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...
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r-- | apps/user_ldap/js/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 4c2f182dad8..79d0176baa9 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -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 { |