Changes between Initial Version and Version 10 of Ticket #17433
- Timestamp:
- 10/19/2014 07:49:58 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17433
- Property Keywords has-patch needs-unit-tests added
- Property Cc info@… kurtpayne pauldewouters@… added
-
Property
Milestone
changed from
Awaiting Review
toFuture Release
-
Ticket #17433 – Description
initial v10 2 2 3 3 I think the bug is exactly in wp-includes/formatting.php, where it says: 4 4 {{{ 5 5 // Assume the domain will have at least two subs 6 6 if ( 2 > count( $subs ) ) { 7 7 return apply_filters( 'is_email', false, $email, 'domain_no_periods' ); 8 8 } 9 9 }}} 10 10 So: Could you please special-case "localhost" in is_email() so that it's allowed as email domain? 11 11