diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-04-09 12:36:53 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-04-09 12:36:53 +0200 |
commit | 8e7081d7845b7e976c267aea110fe0503354cb3d (patch) | |
tree | 18d333777bbae85514f60d20711e2ec2075f247e /apps/user_ldap/js/wizard | |
parent | 40edaa5a690e9094beb6e19bb8a11ff754976f82 (diff) | |
download | nextcloud-server-8e7081d7845b7e976c267aea110fe0503354cb3d.tar.gz nextcloud-server-8e7081d7845b7e976c267aea110fe0503354cb3d.zip |
run functionality checks also when host field changes
Diffstat (limited to 'apps/user_ldap/js/wizard')
-rw-r--r-- | apps/user_ldap/js/wizard/view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/wizard/view.js b/apps/user_ldap/js/wizard/view.js index 8eb10c58017..96f700f8f1a 100644 --- a/apps/user_ldap/js/wizard/view.js +++ b/apps/user_ldap/js/wizard/view.js @@ -124,7 +124,7 @@ OCA = OCA || {}; 'ldap_base', 'ldap_userlist_filter', 'ldap_login_filter' ]; for(var key in changeSet) { - if($.inArray(key, testTriggers)) { + if($.inArray(key, testTriggers) >= 0) { this.functionalityCheck(); return; } |