Changeset 44620 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 01/16/2019 06:15:40 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r44618 r44620 3457 3457 * @since 2.8.0 3458 3458 * 3459 * @param string $ emailThe sanitized email address.3460 * @param string $email The email address, as provided to sanitize_email().3461 * @param string $message A message to pass to the user.3459 * @param string $sanitized_email The sanitized email address. 3460 * @param string $email The email address, as provided to sanitize_email(). 3461 * @param string|null $message A message to pass to the user. null if email is sanitized. 3462 3462 */ 3463 3463 return apply_filters( 'sanitize_email', '', $email, 'email_too_short' ); … … 3532 3532 3533 3533 // Put the email back together 3534 $ email = $local . '@' . $domain;3534 $sanitized_email = $local . '@' . $domain; 3535 3535 3536 3536 // Congratulations your email made it! 3537 3537 /** This filter is documented in wp-includes/formatting.php */ 3538 return apply_filters( 'sanitize_email', $ email, $email, null );3538 return apply_filters( 'sanitize_email', $sanitized_email, $email, null ); 3539 3539 } 3540 3540
Note: See TracChangeset
for help on using the changeset viewer.