From ecf25f5d2a1793671474fb9dfe816001b98b4770 Mon Sep 17 00:00:00 2001 From: Felix Favre Date: Wed, 26 Aug 2015 15:19:22 +0200 Subject: replace overcomplicated regex for email validation with php function --- includes/sys_page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/sys_page.php') diff --git a/includes/sys_page.php b/includes/sys_page.php index f9ee0ea6..967a0172 100644 --- a/includes/sys_page.php +++ b/includes/sys_page.php @@ -43,7 +43,7 @@ function strip_item($item) { * Überprüft eine E-Mail-Adresse. */ function check_email($email) { - return (bool) preg_match("#^([a-zA-Z0-9_+\-])+(\.([a-zA-Z0-9_+\-])+)*@((\[(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5]))\]))|((([\p{L}0-9])+(([\-])+([\p{L}0-9])+)*\.)+([\p{L}])+(([\-])+([\p{L}0-9])+)*))$#u", $email); + return (bool) filter_var($email, FILTER_VALIDATE_EMAIL); } ?> -- cgit v1.2.3-54-g00ecf