Advertisement
Guest User

Emil Uzelac

a guest
Oct 3rd, 2010
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. // in /skeptical/template-contact.php
  2.  
  3. // on line 28
  4.  
  5. // find
  6. } else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['email']))) {
  7.  
  8. // replace with
  9. } else if (!preg_match("/^[A-Z0-9._%-]+@[A-Z0-9][A-Z0-9.-]{0,61}[A-Z0-9]\.[A-Z]{2,6}$/i", trim($_POST['email']))) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement