Make WordPress Core

Changeset 56484

Timestamp:
08/29/2023 01:44:54 PM (11 months ago)
Author:
SergeyBiryukov
Message:

External Libraries: Upgrade PHPMailer to version 6.8.1.

This is a minor maintenance release.

Note: WordPress core does not include PHPMailer's DSN class, as it is not particularly relevant for WP.

References:

Follow-up to [50628], [50799], [51169], [51634], [51635], [52252], [52749], [52811], [53500], [53535], [53917], [54427], [54937], [55557].

Props jrf, Synchro.
Fixes #59238.

Location:
trunk/src/wp-includes/PHPMailer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/PHPMailer/PHPMailer.php

    r55557 r56484  
    751751     * @var string
    752752     */
    753     const VERSION = '6.8.0';
     753    const VERSION = '6.8.';
    754754
    755755    /**
     
    796796     *
    797797     * Background: mail() will sometimes corrupt messages
    798      * with headers headers longer than 65 chars, see #818.
     798     * with headers longer than 65 chars, see #818.
    799799     *
    800800     * @var int
  • trunk/src/wp-includes/PHPMailer/SMTP.php

    r55557 r56484  
    3636     * @var string
    3737     */
    38     const VERSION = '6.8.0';
     38    const VERSION = '6.8.';
    3939
    4040    /**
     
    705705     * Issues a data command and sends the msg_data to the server,
    706706     * finalizing the mail transaction. $msg_data is the message
    707      * that is to be send with the headers. Each header needs to be
     707     * that is to be sen with the headers. Each header needs to be
    708708     * on a single line followed by a <CRLF> with the message headers
    709709     * and the message body being separated by an additional <CRLF>.
     
    733733
    734734        /* To distinguish between a complete RFC822 message and a plain message body, we check if the first field
    735          * of the first line (':' separated) does not contain a space then it _should_ be a header and we will
     735         * of the first line (':' separated) does not contain a space then it _should_ be a header and we will
    736736         * process all lines before a blank line as headers.
    737737         */
Note: See TracChangeset for help on using the changeset viewer.