Changeset 32800 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 06/16/2015 08:00:15 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r32793 r32800 410 410 // Break $recipient into name and address parts if in the format "Foo <bar@baz.com>" 411 411 $recipient_name = ''; 412 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {412 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) { 413 413 if ( count( $matches ) == 3 ) { 414 414 $recipient_name = $matches[1]; … … 432 432 // Break $recipient into name and address parts if in the format "Foo <bar@baz.com>" 433 433 $recipient_name = ''; 434 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {434 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) { 435 435 if ( count( $matches ) == 3 ) { 436 436 $recipient_name = $matches[1]; … … 450 450 // Break $recipient into name and address parts if in the format "Foo <bar@baz.com>" 451 451 $recipient_name = ''; 452 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {452 if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) { 453 453 if ( count( $matches ) == 3 ) { 454 454 $recipient_name = $matches[1]; … … 1274 1274 /** 1275 1275 * Filter the redirect fallback URL for when the provided redirect is not safe (local). 1276 * 1276 * 1277 1277 * @since 4.3.0 1278 * 1278 * 1279 1279 * @param string $fallback_url The fallback URL to use by default. 1280 1280 * @param int $status The redirect status.
Note: See TracChangeset
for help on using the changeset viewer.