Changes between Initial Version and Version 1 of Ticket #6900
- Timestamp:
- Aug 11, 2010, 7:08:47 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6900 – Description
initial v1 5 5 6 6 in line 5290: 7 7 {{{ 8 8 buildParams( prefix + "[" + ( typeof v === "object" || 9 9 jQuery.isArray(v) ? i : "" ) + "]", v ); 10 10 }}} 11 11 I change this code: 12 12 {{{ 13 13 buildParams(prefix + (typeof v === "object" || 14 14 jQuery.isArray(v) ? "[" 15 15 + i + "]" : ""), v); 16 16 }}} 17 17 and the result was good. I could not test on many more cases. 18 18