﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
8042	PasswordResetForm's EmailField has maximum length of 40	Bob Thomas <bthomas@…>	nobody	"PasswordResetForm's EmailField has maximum length of 40, but the User model's email field has a maximum length of 75.

Trivial patch:
{{{
Index: django/contrib/auth/forms.py
===================================================================
--- django/contrib/auth/forms.py        (revision 8154)
+++ django/contrib/auth/forms.py        (working copy)
@@ -87,7 +87,7 @@
         return self.user_cache

 class PasswordResetForm(forms.Form):
-    email = forms.EmailField(label=_(""E-mail""), max_length=40)
+    email = forms.EmailField(label=_(""E-mail""), max_length=75)

     def clean_email(self):
         """"""
}}}"		closed	contrib.auth	dev		fixed			Unreviewed	0	0	0	0	0	0
