From 62a09d63946a6942250f5af2f1159b37a0bbc9fa Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Sun, 18 Sep 2011 23:17:39 -0700 Subject: [PATCH] Correction to waldo login view to pass the request into the login_form for GET requests as well. --- philo/contrib/waldo/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/philo/contrib/waldo/models.py b/philo/contrib/waldo/models.py index 025cfbe..730b7db 100644 --- a/philo/contrib/waldo/models.py +++ b/philo/contrib/waldo/models.py @@ -107,7 +107,7 @@ class LoginMultiView(MultiView): return HttpResponseRedirect(redirect) else: - form = self.login_form() + form = self.login_form(request) request.session.set_test_cookie() -- 2.20.1