From 0dee2e9233b25e8673b24b57a43bb580ca7951bd Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Thu, 18 Oct 2012 13:33:14 -0400 Subject: [PATCH] resend the same activation link instead of a new one when someone who is not active tries to log in --- common/djangoapps/student/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/common/djangoapps/student/views.py b/common/djangoapps/student/views.py index 55bfc0715a..bf325a994b 100644 --- a/common/djangoapps/student/views.py +++ b/common/djangoapps/student/views.py @@ -559,7 +559,6 @@ def reactivation_email(request): def reactivation_email_for_user(user): reg = Registration.objects.get(user=user) - reg.register(user) d = {'name': user.profile.name, 'key': reg.activation_key}