summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-05-09 19:58:47 -0400
committerTim Graham <timograham@gmail.com>2016-05-17 07:24:45 -0400
commit354acd04af524ad82002b903df1189581c51cabe (patch)
tree52c4fe0a18f436f2280149e66dd8efa7cb508ae0 /docs/ref
parentece4d24f8e494129c098868fa792400937941fab (diff)
Refs #26601 -- Added a warning if both MIDDLEWARE AND MIDDLEWARE_CLASSES are set.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/checks.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 5057ef18b6..f852c777ad 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -266,6 +266,9 @@ that might occur as a result of a version upgrade.
put the values of the following settings into your defaults ``TEMPLATES``
dict: ``TEMPLATE_DIRS``, ``TEMPLATE_CONTEXT_PROCESSORS``, ``TEMPLATE_DEBUG``,
``TEMPLATE_LOADERS``, ``TEMPLATE_STRING_IF_INVALID``.
+* **1_10.W001**: The ``MIDDLEWARE_CLASSES`` setting is deprecated in Django
+ 1.10 and the :setting:`MIDDLEWARE` setting takes precedence. Since you've
+ set ``MIDDLEWARE``, the value of ``MIDDLEWARE_CLASSES`` is ignored.
Admin
-----