From c09e70d3e6f551c7dc2fb424b6f3230607d5959a Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 1 Mar 2010 23:50:48 +0000 Subject: [PATCH] + in the name, not the domain --- common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index b0fd1cc7..b2a33f6c 100644 --- a/common.inc.php +++ b/common.inc.php @@ -872,7 +872,7 @@ function outputStatus($status) //returns true if its a valid email address, false if its not function isEmailAddress($str) { - if(eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-+]+\.([a-zA-Z]{2,4})$', $str)) + if(eregi('^[a-zA-Z0-9._-+]+@[a-zA-Z0-9._-]+\.([a-zA-Z]{2,4})$', $str)) return true; else return false;