From f3bf62230aa0de220f1c7832c427201fc6f5b63b Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sat, 13 Aug 2011 11:25:57 +0000 Subject: [PATCH] Fixed #16606 - Typo in docs/ref/contrib/csrf.txt; thanks selwin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16612 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/contrib/csrf.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/csrf.txt b/docs/ref/contrib/csrf.txt index 50e15d7f94..a932a0e481 100644 --- a/docs/ref/contrib/csrf.txt +++ b/docs/ref/contrib/csrf.txt @@ -31,7 +31,7 @@ To enable CSRF protection for your views, follow these steps: 1. Add the middleware ``'django.middleware.csrf.CsrfViewMiddleware'`` to your list of middleware classes, :setting:`MIDDLEWARE_CLASSES`. (It should come - and before any view middleware that assume that CSRF attacks have + before any view middleware that assume that CSRF attacks have been dealt with.) Alternatively, you can use the decorator