Make WordPress Core

Ticket #47793: 47793.patch

File 47793.patch, 951 bytes (added by jenkoian, 7 years ago)
  • wp/wp-includes/formatting.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    32783278                 *
    32793279                 * @since 2.8.0
    32803280                 *
    3281                  * @param bool   $is_email Whether the email address has passed the is_email() checks. Default false.
    3282                  * @param string $email    The email address being checked.
    3283                  * @param string $context  Context under which the email was tested.
     3281                 * @param bool|string $is_email Whether the email address has passed the is_email() checks or the email address to check.
     3282                 * @param string      $email    The email address being checked.
     3283                 * @param string      $context  Context under which the email was tested.
    32843284                 */
    32853285                return apply_filters( 'is_email', false, $email, 'email_too_short' );
    32863286        }