ajax() with method "PUT" - missing payload

ajax() with method "PUT" - missing payload


Hi,
during the update of one of my projects to the latest svn checkout
(r6493) I ran into a confusing problem with the ajax() method. All
calls with method "PUT" don't deliver any payload. Because of this
problem I compared the svn version with latest stable release (1.3.2).
1.3.2 (working): xhr.send(s.data);
1.3.3pre (not-working): xhr.send( (type === "POST") ? s.data : null );
changed(working): xhr.send( (type === "POST" || type === "PUT") ?
s.data : null );
Did I miss something or is this an unintentional behaviour?
---
alx