summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-09 06:44:12 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-09 06:44:12 +0000
commit3057a59ec438348f9b9d33933b1443d149a3dd0d (patch)
tree6ece4aa5d49c9c7b30cadb8b1ca114d545f65e7f /docs/topics/http
parent1b16a03dba7704f4e5aaaa9344f8eda8c6ff6ae7 (diff)
Fixed #11933 -- Corrected the naming of the cached_db session backend. Thanks to mb0@mb0.org for the report and Gabriel Hurley for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/sessions.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index 3fa6ffd68c..68ead03b65 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -420,7 +420,7 @@ SESSION_ENGINE
.. versionadded:: 1.0
.. versionchanged:: 1.1
- The ``cache_db`` backend was added
+ The ``cached_db`` backend was added
Default: ``django.contrib.sessions.backends.db``
@@ -429,7 +429,7 @@ Controls where Django stores session data. Valid values are:
* ``'django.contrib.sessions.backends.db'``
* ``'django.contrib.sessions.backends.file'``
* ``'django.contrib.sessions.backends.cache'``
- * ``'django.contrib.sessions.backends.cache_db'``
+ * ``'django.contrib.sessions.backends.cached_db'``
See `configuring the session engine`_ for more details.