diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-23 23:52:26 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-23 23:52:26 +0000 |
commit | 2daad646e3e8e7039758d9e3524fcfd2b52c4920 (patch) | |
tree | 0a0334e99a1e69dad5fa9165795a11cbe50e2144 | |
parent | a5d0ad3e4f92147ea07a13e236389914ab4a57b7 (diff) | |
download | troggle-2daad646e3e8e7039758d9e3524fcfd2b52c4920.tar.gz troggle-2daad646e3e8e7039758d9e3524fcfd2b52c4920.tar.bz2 troggle-2daad646e3e8e7039758d9e3524fcfd2b52c4920.zip |
bug
-rw-r--r-- | core/views/user_registration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/user_registration.py b/core/views/user_registration.py index f54e6da..b17170c 100644 --- a/core/views/user_registration.py +++ b/core/views/user_registration.py @@ -57,7 +57,7 @@ def reset_done(request): """
current_user = request.user
save_users(request, current_user)
- if updated_user.is_anonymous:
+ if current_user.is_anonymous:
# What we expect, for a completely new user
return HttpResponseRedirect("/accounts/login/?next=/handbook/troggle/training/trogbegin.html")
else:
|