Changeset 56596
- Timestamp:
- 09/16/2023 06:48:59 AM (13 months ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r56561 r56596 4523 4523 } 4524 4524 4525 if ( ( str_contains( $url, '[' ) ) || ( str_contains( $url, ']' )) ) {4525 if ( str_contains( $url, '[' ) || str_contains( $url, ']' ) ) { 4526 4526 4527 4527 $parsed = wp_parse_url( $url ); -
trunk/src/wp-includes/vars.php
r56224 r56596 92 92 } elseif ( stripos( $_SERVER['HTTP_USER_AGENT'], 'safari' ) !== false ) { 93 93 $is_safari = true; 94 } elseif ( ( str_contains( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) || str_contains( $_SERVER['HTTP_USER_AGENT'], 'Trident' ) ) && str_contains( $_SERVER['HTTP_USER_AGENT'], 'Win' ) ) { 94 } elseif ( ( str_contains( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) || str_contains( $_SERVER['HTTP_USER_AGENT'], 'Trident' ) ) 95 && str_contains( $_SERVER['HTTP_USER_AGENT'], 'Win' ) 96 ) { 95 97 $is_winIE = true; 96 98 } elseif ( str_contains( $_SERVER['HTTP_USER_AGENT'], 'MSIE' ) && str_contains( $_SERVER['HTTP_USER_AGENT'], 'Mac' ) ) { -
trunk/src/wp-mail.php
r55988 r56596 108 108 $content_transfer_encoding = $content_transfer_encoding[0]; 109 109 } 110 if ( ( 'multipart/alternative' === $content_type ) && ( str_contains( $line, 'boundary="' ) ) && ( '' === $boundary )) {110 if ( 'multipart/alternative' === $content_type && str_contains( $line, 'boundary="' ) && '' === $boundary ) { 111 111 $boundary = trim( $line ); 112 112 $boundary = explode( '"', $boundary );
Note: See TracChangeset
for help on using the changeset viewer.