Changeset 10783
- Timestamp:
- 03/14/2009 01:35:47 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r10777 r10783 1517 1517 // LOCAL PART 1518 1518 // Test for invalid characters 1519 if ( !preg_match( '/^[a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]+$/', $local ) ) { 1519 $local = preg_replace( '/[^a-zA-Z0-9!#$%&\'*+\/=?^_`{|}~\.-]/', '', $local ); 1520 if ( '' === $local ) { 1520 1521 return apply_filters( 'sanitize_email', '', $email, 'local_invalid_chars' ); 1521 1522 }
Note: See TracChangeset
for help on using the changeset viewer.