Browse Source

Fixed #27041 -- Documented that built-in middleware are compatible with MIDDLEWARE and MIDDLEWARE_CLASSES.

Ville Skyttä 8 years ago
parent
commit
f95bd89e82
1 changed files with 2 additions and 1 deletions
  1. 2 1
      docs/topics/http/middleware.txt

+ 2 - 1
docs/topics/http/middleware.txt

@@ -311,7 +311,8 @@ Upgrading pre-Django 1.10-style middleware
 
 Django provides ``django.utils.deprecation.MiddlewareMixin`` to ease creating
 middleware classes that are compatible with both :setting:`MIDDLEWARE` and the
-old :setting:`MIDDLEWARE_CLASSES`.
+old :setting:`MIDDLEWARE_CLASSES`. All middleware classes included with Django
+are compatible with both settings.
 
 The mixin provides an ``__init__()`` method that accepts an optional
 ``get_response`` argument and stores it in ``self.get_response``.