Changeset 45703
- Timestamp:
- 07/31/2019 01:25:43 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r45676 r45703 3268 3268 * @param string $email Email address to verify. 3269 3269 * @param bool $deprecated Deprecated. 3270 * @return string| bool Either false or the valid email address.3270 * @return string|false Valid email address on success, false on failure. 3271 3271 */ 3272 3272 function is_email( $email, $deprecated = false ) { … … 3286 3286 * @since 2.8.0 3287 3287 * 3288 * @param bool $is_email Whether the email address has passed the is_email() checks. Default false.3289 * @param string $email The email address being checked.3290 * @param string $context Context under which the email was tested.3288 * @param string|false $is_email The email address if successfully passed the is_email() checks, false otherwise. 3289 * @param string $email The email address being checked. 3290 * @param string $context Context under which the email was tested. 3291 3291 */ 3292 3292 return apply_filters( 'is_email', false, $email, 'email_too_short' );
Note: See TracChangeset
for help on using the changeset viewer.