diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-28 15:06:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-28 15:06:27 +0200 |
commit | 3647fbe7cd86e743b059889d69b03fcf8207780f (patch) | |
tree | b6241abe21758515ef143e34bb9adab6a418c019 /apps/user_ldap/js/wizard/configModel.js | |
parent | 25f1fdb2759effa6c75a3c25663234af3b9be68f (diff) | |
parent | 5b4e7520794f9ac080c07c13ca6241313545f1b9 (diff) | |
download | nextcloud-server-3647fbe7cd86e743b059889d69b03fcf8207780f.tar.gz nextcloud-server-3647fbe7cd86e743b059889d69b03fcf8207780f.zip |
Merge pull request #976 from nextcloud/downstream-25702
Hide the LDAP password in the client side
Diffstat (limited to 'apps/user_ldap/js/wizard/configModel.js')
-rw-r--r-- | apps/user_ldap/js/wizard/configModel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/wizard/configModel.js b/apps/user_ldap/js/wizard/configModel.js index c3f1e85b592..3732409c3e1 100644 --- a/apps/user_ldap/js/wizard/configModel.js +++ b/apps/user_ldap/js/wizard/configModel.js @@ -318,7 +318,7 @@ OCA = OCA || {}; */ requestConfigurationTest: function() { var url = OC.generateUrl('apps/user_ldap/ajax/testConfiguration.php'); - var params = OC.buildQueryString(this.configuration); + var params = OC.buildQueryString({ldap_serverconfig_chooser: this.configID}); var model = this; $.post(url, params, function(result) { model._processTestResult(model, result) }); //TODO: make sure only one test is running at a time |