fix: use explode
instead of split
This commit is contained in:
parent
9a571832f5
commit
da760ee4a3
2 changed files with 4 additions and 4 deletions
includes/form
|
@ -114,7 +114,7 @@ class Validator_Email
|
|||
public function validate( $value )
|
||||
{
|
||||
if ( preg_match( "/^[a-zA-Z0-9\._-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/" , $value ) ) {
|
||||
list( $username , $domain ) = split( '@' , $value );
|
||||
list( $username , $domain ) = explode( '@' , $value );
|
||||
if ( checkdnsrr( $domain , 'MX' ) ) {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue