Changeset 56596 for trunk/src/wp-mail.php
- Timestamp:
- 09/16/2023 06:48:59 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.