From 8e2d30abe10ab3cfaa2ee4773e79d70f38e57493 Mon Sep 17 00:00:00 2001 From: rojaro <> Date: Mon, 2 May 2011 08:14:26 +0000 Subject: properly fixed #301 --- .../Web/Javascripts/source/prado/activefileupload/activefileupload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/Web') diff --git a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js index 69c673b8..547797a2 100755 --- a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js +++ b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js @@ -38,7 +38,7 @@ Prado.WebUI.TActiveFileUpload = Base.extend( // set the form to submit in the iframe, submit it, and then reset it. this.oldtargetID = this.form.target; this.oldFormAction = this.form.action; - this.form.action += '?TActiveFileUpload_InputId='+this.options.inputID+'&TActiveFileUpload_TargetId='+this.options.targetID; + this.form.action += (this.form.action.indexOf('?')>0 ? '&' : '?')+'TActiveFileUpload_InputId='+this.options.inputID+'&TActiveFileUpload_TargetId='+this.options.targetID; this.form.target = this.options.targetID; this.form.submit(); this.form.action = this.oldFormAction; -- cgit v1.2.3