Pman.Download.js
authorAlan Knowles <alan@akbkhome.com>
Tue, 14 Sep 2010 06:39:05 +0000 (14:39 +0800)
committerAlan Knowles <alan@akbkhome.com>
Tue, 14 Sep 2010 06:39:05 +0000 (14:39 +0800)
Pman.Download.js

index c657866..4eb4916 100644 (file)
@@ -91,8 +91,17 @@ Pman.Download = function(cfg)
     });
  
     for(var i in cfg.params) {
+        if (('' +i).length > 1000) {
+           var el = this.form.createChild( {
+                tag : 'textArea',
+                style: 'width:1px;height:1px',
+                name : i,
+            }); 
+            el.setValue(cfg.params[i]);
+        }
         var el = this.form.createChild( {
             tag : 'input',
+            
             type: 'hidden',
             name : i,
         });