Django

Code

Changeset 8159

Show
Ignore:
Timestamp:
07/31/08 04:08:55 (4 months ago)
Author:
russellm
Message:

Fixed #8042 -- Modified the password reset form so that the email field length matches the User model. Thanks to Bob Thomas <bthomas@ncircle.com> for the report.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/auth/forms.py

    r8046 r8159  
    8888 
    8989class PasswordResetForm(forms.Form): 
    90     email = forms.EmailField(label=_("E-mail"), max_length=40
     90    email = forms.EmailField(label=_("E-mail"), max_length=75
    9191     
    9292    def clean_email(self):