Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiicha <pfitzner@physik.hu-berlin.de>2013-11-05 04:24:20 +0400
committermiicha <pfitzner@physik.hu-berlin.de>2013-11-05 04:24:20 +0400
commit5b9bdaadaac4e2ff205d9428d4843e3eca40297f (patch)
treecb5520791c71ddedcf3970568badb17f43305221
parentb767bbcddacc62741e8bed585c080092448bb829 (diff)
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...
-rw-r--r--apps/user_ldap/js/settings.js2
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 {