From 82676a20a1b2dcb1063c94165d1062e7c9f41f55 Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Tue, 9 May 2017 09:34:42 +0200 Subject: [PATCH] Errores solucionados --- debian/changelog | 2 +- forms/admin/photos/photos.js | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 644d6018..aa1cfa9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -hedera-web (1.401-deb8) stable; urgency=low +hedera-web (1.402-deb8) stable; urgency=low * Initial Release. diff --git a/forms/admin/photos/photos.js b/forms/admin/photos/photos.js index 7800fb04..0b7510e8 100644 --- a/forms/admin/photos/photos.js +++ b/forms/admin/photos/photos.js @@ -76,10 +76,10 @@ Hedera.Photos = new Class if (!(fileData.sent || fileData.loading)) { - formData.set ('image', fileData.file); - formData.set ('name', fileData.name.value); - formData.set ('schema', this.$('schema').value); - formData.set ('srv', 'json:image/upload'); + formData.append ('image', fileData.file); + formData.append ('name', fileData.name.value); + formData.append ('schema', this.$('schema').value); + formData.append ('srv', 'json:image/upload'); this.conn.sendFormData (formData, this.onFileUpload.bind (this, fileData));