aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-07-26 22:51:07 -0700
committerredmatrix <git@macgirvin.com>2016-07-26 22:51:07 -0700
commit672c3d7c6df2bf4667546c4376318d8684568014 (patch)
tree24d27705ad197ea1769f906404d6e14071f5599d /view/js
parent72479041ae51a5af020cb405715aa7fa3d6a97f1 (diff)
parente286b510f1488b0fd529258a0d6159111fc4a2ef (diff)
downloadvolse-hubzilla-672c3d7c6df2bf4667546c4376318d8684568014.tar.gz
volse-hubzilla-672c3d7c6df2bf4667546c4376318d8684568014.tar.bz2
volse-hubzilla-672c3d7c6df2bf4667546c4376318d8684568014.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/js')
-rw-r--r--view/js/mod_cloud.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/mod_cloud.js b/view/js/mod_cloud.js
index 71e916446..0584cec53 100644
--- a/view/js/mod_cloud.js
+++ b/view/js/mod_cloud.js
@@ -93,6 +93,6 @@ function DragDropUploadFile(file, idx) {
xhr.open('post', window.location.pathname, true);
var data = new FormData(document.getElementById("ajax-upload-files"));
- data.append('file', file);
+ data.append('file[]', file);
xhr.send(data);
}