Opened 13 years ago
Closed 13 years ago
#18270 closed Bug (fixed)
Erroneous sample email template for password reset
Description ¶
The sample registration/password_reset_email.html email body template at https://docs.djangoproject.com/en/1.4/topics/auth/#module-django.contrib.auth.views is
Someone asked for password reset for email {{ email }}. Follow the link below: {{ protocol}}://{{ site_name }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}
but it should be
Someone asked for password reset for email {{ email }}. Follow the link below: {{ protocol }}://{{ domain }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}
Because site_name is a human readable description of the site and not a domain name. So the current example template will get the user to something like "http://My Site/accounts/...", which is not the desired effect.
Change History (2)
comment:1 by , 13 years ago
Easy pickings: | set |
---|---|
Triage Stage: | Unreviewed → Ready for checkin |
Type: | Uncategorized → Bug |
Note:
See TracTickets
for help on using tickets.
Fixed in master (ec5423df05dedeee6651c36dd4d90fec0d8cca7c).
Should be backported to 1.4