Make WordPress Core

Ticket #18927: 18927.diff

File 18927.diff, 536 bytes (added by jkudish, 13 years ago)
  • formatting.php

     
    15401540function is_email( $email, $deprecated = false ) {
    15411541        if ( ! empty( $deprecated ) )
    15421542                _deprecated_argument( __FUNCTION__, '3.0' );
     1543               
     1544        // Test for string
     1545        if ( !is_string( $email ) ) {
     1546                return apply_filters( 'is_email', false, $email, 'email_not_string' );
     1547        }               
    15431548
    15441549        // Test for the minimum length the email can be
    15451550        if ( strlen( $email ) < 3 ) {