From 1fcd0e54edc35b05d276f4381b802a3b1bdec6c1 Mon Sep 17 00:00:00 2001 From: eric Date: Thu, 21 Mar 2013 10:14:23 -0400 Subject: [PATCH] fixed bug that broke return path to pledge --- frontend/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/views.py b/frontend/views.py index 8efd0a25..79cc92f3 100755 --- a/frontend/views.py +++ b/frontend/views.py @@ -153,7 +153,7 @@ def superlogin(request, **kwargs): extra_context={"socials":user.profile.social_auths} except: pass - return login(request, extra_context=extra_context, authentication_form=AuthForm) + return login(request, extra_context=extra_context, authentication_form=AuthForm, **kwargs) def work(request, work_id, action='display'): work = safe_get_work(work_id)