From 1e73f06d8b122806a2e07013b1e6301bf108c4c8 Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 1 Mar 2010 22:17:38 +0000 Subject: [PATCH] Allow + in email addresses --- common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index f8b21a05..b0fd1cc7 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;