summaryrefslogtreecommitdiffstats
path: root/system/libraries/Form_validation.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-27 14:34:18 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-27 14:34:18 +0200
commit6edf929449f50339c4cb52891426fa9d45e33e00 (patch)
tree963d70f006e24d34c62cebd27208e16c83a163a7 /system/libraries/Form_validation.php
parentb66664b5decd68de50ae6c239c8d995d6c088d94 (diff)
parentd37f0e9cfe106ff1a15b8f09df27e4f3a004b907 (diff)
Merge pull request #1319 from timw4mail/email
Make valid_email helper function more accurate
Diffstat (limited to 'system/libraries/Form_validation.php')
-rw-r--r--system/libraries/Form_validation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 8e03e91f3..f3087f883 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -1076,7 +1076,7 @@ class CI_Form_validation {
*/
public function valid_email($str)
{
- return (bool) preg_match('/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix', $str);
+ return filter_var($str, FILTER_VALIDATE_EMAIL);
}
// --------------------------------------------------------------------