forgot to pass request.form into LoginForm class

This commit is contained in:
Rodney Ewing 2013-06-26 12:53:02 -07:00 committed by Christopher Allan Webber
parent ef146456b1
commit d66f79031e

View File

@ -138,7 +138,7 @@ def _response_nickname(response):
@auth_enabled
def login(request):
"""OpenID Login View"""
login_form = auth_forms.LoginForm(request)
login_form = auth_forms.LoginForm(request.form)
allow_registration = mg_globals.app_config["allow_registration"]
# Can't store next in request.GET because of redirects to OpenID provider