summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2010-10-24 17:29:49 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2010-10-24 17:29:49 +0000
commit552acc652d5cad1e2664809a437702792a73b1e8 (patch)
treecd0e31b7fef9d30034127d989acd4570a13961c1 /docs
parent2d4ddc0416993725098a5f3016213e63fc1e4b70 (diff)
[1.2.X] Fixed #14551 -- corrected a type in the remote user auth documentation. Thanks to mag for the report and fix. Backport of [14344].
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14345 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/auth-remote-user.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/auth-remote-user.txt b/docs/howto/auth-remote-user.txt
index 9dbde29e5c..deab794cb1 100644
--- a/docs/howto/auth-remote-user.txt
+++ b/docs/howto/auth-remote-user.txt
@@ -2,7 +2,7 @@
Authentication using ``REMOTE_USER``
====================================
-.. currentmodule:: django.contrib.backends
+.. currentmodule:: django.contrib.auth.backends
This document describes how to make use of external authentication sources
(where the Web server sets the ``REMOTE_USER`` environment variable) in your
@@ -68,7 +68,7 @@ If your authentication mechanism uses a custom HTTP header and not
``RemoteUserBackend``
=====================
-.. class:: django.contrib.backends.RemoteUserBackend
+.. class:: django.contrib.auth.backends.RemoteUserBackend
If you need more control, you can create your own authentication backend
that inherits from ``RemoteUserBackend`` and overrides certain parts: