From 01338a76103a18d053413f1a8ad45870b2babf02 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 24 Jul 2016 22:58:26 -0700 Subject: make drag/drop work with acl, which bypassed the form --- view/js/mod_cloud.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/js') diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js index 71e916446..8f08c7fe9 100644 --- a/view/js/mod_cloud.js +++ b/view/js/mod_cloud.js @@ -90,9 +90,9 @@ function DragDropUploadFile(file, idx) { } }); // POST to the entire cloud path - xhr.open('post', window.location.pathname, true); + xhr.open('post', 'file_upload', true); var data = new FormData(document.getElementById("ajax-upload-files")); - data.append('file', file); + data.append('userfile', file); xhr.send(data); } -- cgit v1.2.3