Django

Code

Show
Ignore:
Timestamp:
01/01/08 23:13:46 (8 months ago)
Author:
adrian
Message:

Fixed #6247 -- Added CsrfMiddleware? to docs/middleware.txt. Thanks, Uninen

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/middleware.txt

    r6947 r6984  
    154154 
    155155.. _Authentication in Web requests: ../authentication/#authentication-in-web-requests 
     156 
     157django.contrib.csrf.middleware.CsrfMiddleware 
     158--------------------------------------------- 
     159 
     160**New in Django development version** 
     161 
     162Adds protection against Cross Site Request Forgeries by adding hidden form 
     163fields to POST forms and checking requests for the correct value. See the 
     164`Cross Site Request Forgery protection documentation`_. 
     165 
     166.. _`Cross Site Request Forgery protection documentation`: ../csrf/ 
    156167 
    157168django.middleware.transaction.TransactionMiddleware