0
1
Fork 0

Errores solucionados

This commit is contained in:
Juan Ferrer Toribio 2017-05-09 09:34:42 +02:00
parent da007ff7c0
commit 82676a20a1
2 changed files with 5 additions and 5 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.401-deb8) stable; urgency=low
hedera-web (1.402-deb8) stable; urgency=low
* Initial Release.

View File

@ -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));