diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-18 19:18:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-18 19:18:30 +0000 |
commit | 31fce3f08ccc66a760e4e9137120a5c98ac5594c (patch) | |
tree | f8cae98e46406a6f8f83e5ebf18a0f5057789784 /modules/user/user.module | |
parent | ff6976f619279e1d6ce68db945e30ff0b7075ffb (diff) | |
download | brdo-31fce3f08ccc66a760e4e9137120a5c98ac5594c.tar.gz brdo-31fce3f08ccc66a760e4e9137120a5c98ac5594c.tar.bz2 |
- Fixed glitch in e-mail verification code. Patch by Gerhard.
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 5a0e53368..f4ebe3fbd 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -187,7 +187,7 @@ function user_validate_mail($mail) { ** allowed. */ - $user = '[a-zA-Z0-9_\-\.]+'; + $user = '[a-zA-Z0-9_\-\.\+]+'; $domain = '(?:[a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]\.?)+'; $ipv4 = '[0-9]{1,3}(\.[0-9]{1,3}){3}'; $ipv6 = '[0-9a-fA-F]{1,4}(\:[0-9a-fA-F]{1,4}){7}'; |