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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-dev@googlegroups.com To unsubscribe from this group, send email to jquery-dev+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---