summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2019-04-04 13:02:47 +0300
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-26 11:51:28 +0200
commita4095dadc4b165f615dfc88c6ed1cbba5b5a9844 (patch)
tree50176d98c2939bc90dbb536060c88f2e41bf8b8e /docs/ref
parent3c3df7db8e5ce7882d6a8379fc2d0f82330114f1 (diff)
[2.2.x] Fixed #30312 -- Relaxed admin check from django.contrib.sessions to SessionMiddleware subclasses.
Backport of efeceba589974b95b35b2e25df86498c96315518 from master
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/checks.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 9d48138076..a4267131ed 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -657,13 +657,13 @@ The following checks are performed on the default
:setting:`INSTALLED_APPS` in order to use the admin application.
* **admin.E406**: :mod:`django.contrib.messages` must be in
:setting:`INSTALLED_APPS` in order to use the admin application.
-* **admin.E407**: :mod:`django.contrib.sessions` must be in
- :setting:`INSTALLED_APPS` in order to use the admin application.
* **admin.E408**:
:class:`django.contrib.auth.middleware.AuthenticationMiddleware` must be in
:setting:`MIDDLEWARE` in order to use the admin application.
* **admin.E409**: :class:`django.contrib.messages.middleware.MessageMiddleware`
must be in :setting:`MIDDLEWARE` in order to use the admin application.
+* **admin.E410**: :class:`django.contrib.sessions.middleware.SessionMiddleware`
+ must be in :setting:`MIDDLEWARE` in order to use the admin application.
``auth``
--------