diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-20 20:07:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-20 20:07:59 +0000 |
commit | 468cbd7f4a814af7e9ba8a7bfe65496c1fc8c6a7 (patch) | |
tree | 872d3c7e73b48ae98b3bb1f880d0442358526894 /modules/user/user.module | |
parent | feea808fcd8f8c2d3d579c9124eab9dbca591e1a (diff) | |
download | brdo-468cbd7f4a814af7e9ba8a7bfe65496c1fc8c6a7.tar.gz brdo-468cbd7f4a814af7e9ba8a7bfe65496c1fc8c6a7.tar.bz2 |
- Patch #502968 by Ryan Palmer: increase maximum allowable length of email addresses.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 66bdf17fe..f56bbe29b 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -14,7 +14,7 @@ define('USERNAME_MAX_LENGTH', 60); /** * Maximum length of user e-mail text field. */ -define('EMAIL_MAX_LENGTH', 64); +define('EMAIL_MAX_LENGTH', 254); /** * Implement hook_help(). |