Make WordPress Core

Ticket #48965: wp-mail.php.patch

File wp-mail.php.patch, 1.1 KB (added by pikamander2, 5 years ago)

Use strict comparisons and yoda conditions

  • wp-mail.php

     
    101101                                $content_transfer_encoding = explode( ';', $content_transfer_encoding );
    102102                                $content_transfer_encoding = $content_transfer_encoding[0];
    103103                        }
    104                         if ( ( $content_type == 'multipart/alternative' ) && ( false !== strpos( $line, 'boundary="' ) ) && ( '' == $boundary ) ) {
     104                        if ( ( 'multipart/alternative' === $content_type ) && ( false !== strpos( $line, 'boundary="' ) ) && ( '' === $boundary ) ) {
    105105                                $boundary = trim( $line );
    106106                                $boundary = explode( '"', $boundary );
    107107                                $boundary = $boundary[1];
     
    162162
    163163        $subject = trim( $subject );
    164164
    165         if ( $content_type == 'multipart/alternative' ) {
     165        if ( 'multipart/alternative' === $content_type ) {
    166166                $content = explode( '--' . $boundary, $content );
    167167                $content = $content[2];
    168168
     
    212212
    213213        $post_title = xmlrpc_getposttitle( $content );
    214214
    215         if ( $post_title == '' ) {
     215        if ( '' === $post_title ) {
    216216                $post_title = $subject;
    217217        }
    218218