JasonMichael
9 Jun 2007, 10:07 AM
Line 6116 of ext-all-debug.js (on my version) reads:
this.decode = function(json){
return eval("("+ json + ')');
};
it works better when I change it to :
this.decode = function(json){
return eval("('+ json + ')");
};
This seems to be affecting the submission of forms - tons of posts on this. I see this in the two latest versions - 1.0.1a and 1.1 Beta 1...
I'm not an expert though, so maybe this fix isn't correct.
-Jason
this.decode = function(json){
return eval("("+ json + ')');
};
it works better when I change it to :
this.decode = function(json){
return eval("('+ json + ')");
};
This seems to be affecting the submission of forms - tons of posts on this. I see this in the two latest versions - 1.0.1a and 1.1 Beta 1...
I'm not an expert though, so maybe this fix isn't correct.
-Jason