summaryrefslogtreecommitdiffstats
path: root/askbot/deps
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-15 15:33:15 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-08-15 15:33:15 -0400
commite294275498398f85d573995c49eee399ec27746e (patch)
treee6aced4e67f4bd8ee0f5c08d4427d960ee230600 /askbot/deps
parent439d7834f1d37281fc54dc9212eed559bf8f3337 (diff)
downloadaskbot-e294275498398f85d573995c49eee399ec27746e.tar.gz
askbot-e294275498398f85d573995c49eee399ec27746e.tar.bz2
askbot-e294275498398f85d573995c49eee399ec27746e.zip
fixed error in the password registration view
Diffstat (limited to 'askbot/deps')
-rw-r--r--askbot/deps/django_authopenid/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deps/django_authopenid/views.py b/askbot/deps/django_authopenid/views.py
index cace9968..4feae3fa 100644
--- a/askbot/deps/django_authopenid/views.py
+++ b/askbot/deps/django_authopenid/views.py
@@ -1072,7 +1072,7 @@ def signup_with_password(request):
#todo: here we have duplication of get_password_login_provider...
form = RegisterForm(
initial={
- 'next':next,
+ 'next': get_next_url(request),
'login_provider': provider_name
}
)