From: Arthur Schiwon Date: Thu, 9 Apr 2015 10:36:53 +0000 (+0200) Subject: run functionality checks also when host field changes X-Git-Tag: v8.1.0alpha1~43^2~9 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8e7081d7845b7e976c267aea110fe0503354cb3d;p=nextcloud-server.git run functionality checks also when host field changes --- 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; }