diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-26 11:38:49 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-26 11:38:49 +0100 |
commit | 0617e06f69bdfbfb71733b5c4dcc1532b0823a51 (patch) | |
tree | 1f56e7ca1e29917b9d93c4dc87b976e5ffa0f0e7 /apps/files_encryption/js | |
parent | 35a6ad255d6b45e68c18ebcdb36ff0f99311d888 (diff) | |
download | nextcloud-server-0617e06f69bdfbfb71733b5c4dcc1532b0823a51.tar.gz nextcloud-server-0617e06f69bdfbfb71733b5c4dcc1532b0823a51.zip |
use POST instead of GET
Diffstat (limited to 'apps/files_encryption/js')
-rw-r--r-- | apps/files_encryption/js/detect-migration.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js index eadcd237078..2ee105cbfaf 100644 --- a/apps/files_encryption/js/detect-migration.js +++ b/apps/files_encryption/js/detect-migration.js @@ -11,7 +11,7 @@ $(document).ready(function(){ var user = $('#user').val(); var password = $('#password').val(); $.ajax({ - type: 'GET', + type: 'POST', url: OC.linkTo('files_encryption', 'ajax/getMigrationStatus.php'), dataType: 'json', data: {user: user, password: password}, |