Author: lukeplant Date: 2011-06-14 16:31:45 -0700 (Tue, 14 Jun 2011) New Revision: 16401
Modified: django/trunk/docs/releases/1.4.txt Log: Fixed typo in release notes regarding CSRF with PUT/DELETE etc Modified: django/trunk/docs/releases/1.4.txt =================================================================== --- django/trunk/docs/releases/1.4.txt 2011-06-14 10:45:49 UTC (rev 16400) +++ django/trunk/docs/releases/1.4.txt 2011-06-14 23:31:45 UTC (rev 16401) @@ -340,7 +340,7 @@ protection against only POST requests. Since use of PUT and DELETE methods in AJAX applications is becoming more common, we now protect all methods not defined as safe by RFC 2616 i.e. we exempt GET, HEAD, OPTIONS and TRACE, and -enforce protection on everything. +enforce protection on everything else. If you using PUT or DELETE methods in AJAX applications, please see the :ref:`instructions about using AJAX and CSRF <csrf-ajax>`. -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
