Modify ↓
Ticket #3052 (closed bug: fixed)
jquery.form.js does break on file upload
| Reported by: | fil | Owned by: | flesler |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3 |
| Component: | plugin | Version: | 1.2.6 |
| Keywords: | form | Cc: | |
| Blocking: | Blocked by: |
Description
I was trying file uploads with the current jquery.js and jquery.form.js, and file upload in form.js fails (FF3/Mac); I located the problem in function cb() where $.httpData is called with two arguments only. A quick patch is to add a third argument {} in the call on line 270, but I have no idea if it's the correct way to do it.
jquery.js:
- $Rev: 5726 $
jquery.form.js
- Revision: $Id: jquery.form.js 5718 2008-06-07 15:02:19Z malsup $
quick patch:
- data = $.httpData(xhr, opts.dataType);
+ data = $.httpData(xhr, opts.dataType, {});
hth
(Maybe related to #2952)
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.
