From: Alan Knowles Date: Thu, 15 Aug 2019 06:05:03 +0000 (+0800) Subject: Fix #5997 - force post request on downloads X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=4a462ee41fc1aa29ddfdee2f9ccfde47dfccbc59 Fix #5997 - force post request on downloads --- diff --git a/Pman.Download.js b/Pman.Download.js index 124dcf1a..2f16b246 100644 --- a/Pman.Download.js +++ b/Pman.Download.js @@ -110,7 +110,8 @@ Pman.Download = function(cfg) // }); // } - Roo.log(this.params); + //Roo.log(this.params); + this.params._get = 1; // always do a post request, with _get passed for(var i in this.params) { this.form.append(i, this.params[i]); /* @@ -128,7 +129,8 @@ Pman.Download = function(cfg) } var req = new XMLHttpRequest(); req.responseType = 'blob'; - req.open(this.method, this.url); + + req.open('POST', this.url); var _t = this; req.onload = function( ev )