1
0
mirror of https://github.com/django/django.git synced 2025-04-06 14:36:41 +00:00

magic-removal: Changed RequestUserMiddleware to AuthenticationMiddleware in settings.py template. This should have been a part of [2490]

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2492 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2006-03-07 01:43:31 +00:00
parent 9a25318939
commit f5dd6b9a45

View File

@ -53,7 +53,7 @@ TEMPLATE_LOADERS = (
MIDDLEWARE_CLASSES = (
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.contrib.auth.middleware.RequestUserMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.middleware.doc.XViewMiddleware",
)