[aur-dev] [PATCH] Fix up valid email function, FS#12269
All we're looking for now is an @ in any email address to fix problem with not being able to have + in addresses and just because I see no advantage to having any sort of stringent validation Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com> --- web/lib/aur.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/web/lib/aur.inc b/web/lib/aur.inc index 121c692..e82f0ea 100644 --- a/web/lib/aur.inc +++ b/web/lib/aur.inc @@ -132,7 +132,7 @@ function check_sid() { # verify that an email address looks like it is legitimate # function valid_email($addy) { - return eregi("^[a-z0-9\._-]+@+[a-z0-9\._-]+\.+[a-z]{2,4}$", $addy); + return strpos($addy, '@'); } # a new seed value for mt_srand() -- 1.6.0.2
On Sun, Dec 21, 2008 at 08:25:42PM +0900, Callan Barrett wrote:
All we're looking for now is an @ in any email address to fix problem with not being able to have + in addresses and just because I see no advantage to having any sort of stringent validation
Signed-off-by: Callan Barrett <wizzomafizzo@gmail.com> --- web/lib/aur.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Pushed.
participants (2)
-
Callan Barrett
-
Loui Chang