From 8488e3c3808e8e115d1040e231e1ced3083ea02c Mon Sep 17 00:00:00 2001 From: Michael Dale Date: Fri, 2 Oct 2009 00:35:18 +0000 Subject: [PATCH] * fixed bug in firefogg for passthough mode in upload form --- js2/mwEmbed/libAddMedia/mvFirefogg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js2/mwEmbed/libAddMedia/mvFirefogg.js b/js2/mwEmbed/libAddMedia/mvFirefogg.js index 9952a51e6f..21421b02f8 100644 --- a/js2/mwEmbed/libAddMedia/mvFirefogg.js +++ b/js2/mwEmbed/libAddMedia/mvFirefogg.js @@ -451,8 +451,8 @@ mvFirefogg.prototype = { //extends mvBaseUploadInterface //now setup encoder settings based source type: _this.autoEncoderSettings(); - //if set to passthough update the interface: - if(_this.encoder_settings['passthrough'] == true){ + //if set to passthough update the interface (if not a form) + if(_this.encoder_settings['passthrough'] == true && !_this.form_rewrite){ $j(_this.target_passthrough_mode).show(); }else{ $j(_this.target_passthrough_mode).hide(); -- 2.20.1