Changeset 40667 for trunk/src/wp-includes/formatting.php
- Timestamp:
- 05/14/2017 04:19:51 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r40626 r40667 2873 2873 2874 2874 // Test for the minimum length the email can be 2875 if ( strlen( $email ) < 3) {2875 if ( strlen( $email ) < 6 ) { 2876 2876 /** 2877 2877 * Filters whether an email address is valid. … … 3110 3110 function sanitize_email( $email ) { 3111 3111 // Test for the minimum length the email can be 3112 if ( strlen( $email ) < 3) {3112 if ( strlen( $email ) < 6 ) { 3113 3113 /** 3114 3114 * Filters a sanitized email address.
Note: See TracChangeset
for help on using the changeset viewer.