From 61aee7f48797ffa0540e767da6137c9f19153360 Mon Sep 17 00:00:00 2001 From: dave Date: Sat, 20 Feb 2010 00:45:59 +0000 Subject: [PATCH] Fix email checking (did we do this before and had to undo it for some reason?) Anyway, fraser valley had a student try to enter "blah@blah.com/" as their email, which the isEmailAddress happily accepted, and then remote servers started sending back errors to the Committee because the email address is actually invalid. --- common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index 5e2b1806..9b2c5bbd 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;