From b38375ee4c4f2910e4885c6e3ea6b2a64704715b Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 14 Aug 2007 22:26:34 +0000 Subject: [PATCH] Fixed bug in [5885] git-svn-id: http://code.djangoproject.com/svn/django/trunk@5886 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/views.py b/django/contrib/auth/views.py index a0dc59c718..6c40228fab 100644 --- a/django/contrib/auth/views.py +++ b/django/contrib/auth/views.py @@ -31,7 +31,7 @@ def login(request, template_name='registration/login.html'): if Site._meta.installed: current_site = Site.objects.get_current() else: - current_site = RequestSite(self.request) + current_site = RequestSite(request) return render_to_response(template_name, { 'form': oldforms.FormWrapper(manipulator, request.POST, errors),