Skip to main content

Bug Tracker

Side navigation

#4971 closed bug (fixed)

Opened July 24, 2009 11:01PM UTC

Closed July 27, 2009 07:02PM UTC

ajax() with method "PUT" - missing payload

Reported by: alx Owned by:
Priority: major Milestone: 1.4
Component: ajax Version: 1.3.2
Keywords: xhr, payload Cc:
Blocked by: Blocking:
Description

All ajax() calls with method "PUT" don't deliver payload.

Problem - ajax.js line 454:

|| xhr.send( type === "POST" ? s.data : null );

Patch:

|| xhr.send( (type === "POST" || type === "PUT") ? s.data : null );

Testcase can be delivere if needed.

with regards, alx

Attachments (0)
Change History (1)

Changed July 27, 2009 07:02PM UTC by john comment:1

resolution: → fixed
status: newclosed
version: → 1.3.2

Fixed in SVN rev [6512].