From 6b178ae4c555c0b00609154fcbabedb845151438 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Fri, 19 Aug 2011 13:45:31 +0000 Subject: small fix related to #301 --- .../Web/Javascripts/source/prado/activefileupload/activefileupload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js b/framework/Web/Javascripts/source/prado/activefileupload/activefileupload.js index 547797a2..443d9dd0 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 += (this.form.action.indexOf('?')>0 ? '&' : '?')+'TActiveFileUpload_InputId='+this.options.inputID+'&TActiveFileUpload_TargetId='+this.options.targetID; + this.form.action += (this.form.action.indexOf('?')!=-1 ? '&' : '?')+'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