Bug Tracker

Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#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:
Blocked by: Blocking:

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 (4)

comment:1 Changed 15 years ago by flesler

Keywords: form added
Owner: set to malsup

comment:2 Changed 15 years ago by fil

As Renato found out it is the changeset [5714] that breaks file uploads in jquery.form.js

comment:3 Changed 15 years ago by flesler

Owner: changed from malsup to flesler
Status: newassigned

comment:4 Changed 15 years ago by flesler

Resolution: fixed
Status: assignedclosed

Fixed on [5732].

Note: See TracTickets for help on using tickets.