From fbd5e74fa034e73db4005458d2e4c85c747d5785 Mon Sep 17 00:00:00 2001 From: alec Date: Thu, 30 Jun 2011 09:44:28 +0000 Subject: - Make sure upload form uses POST method git-svn-id: https://svn.roundcube.net/trunk@4893 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index f2744b7c0..efd1cc776 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -5619,6 +5619,7 @@ function rcube_webmail() form.target = frame_name; form.action = this.url(action, { _id:this.env.compose_id||'', _uploadid:ts }); + form.setAttribute('method', 'POST'); form.setAttribute('enctype', 'multipart/form-data'); form.submit(); -- cgit v1.2.3