Make WordPress Core


Ignore:
Timestamp:
10/01/2025 01:21:33 PM (10 months ago)
Author:
SergeyBiryukov
Message:

External Libraries: Upgrade PHPMailer to version 6.11.1.

This is a maintenance release with minor bug fixes.

References:

Follow-up to [54937], [55557], [56484], [57137], [59246], [59481], [60623], [60813].

Props SirLouen, jrf, mukesh27, SergeyBiryukov.
Fixes #64055.

File:
1 edited

Legend:

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

    r60813 r60888  
    4242                        'buggy_php'            => sprintf(
    4343                                /* translators: 1: mail.add_x_header. 2: php.ini */
    44                                 __(
    45                                         'Your version of PHP is affected by a bug that may result in corrupted messages. To fix it, switch to sending using SMTP, disable the %1$s option in your %2$s, or switch to MacOS or Linux, or upgrade your PHP version.'
    46                                 ),
     44                                __( 'Your version of PHP is affected by a bug that may result in corrupted messages. To fix it, switch to sending using SMTP, disable the %1$s option in your %2$s, or switch to MacOS or Linux, or upgrade your PHP version.' ),
    4745                                'mail.add_x_header',
    4846                                'php.ini'
     
    9189                        'no_smtputf8'          => __( 'Server does not support SMTPUTF8 needed to send to Unicode addresses' ),
    9290                        'imap_recommended'     => __( 'Using simplified address parser is not recommended. Install the PHP IMAP extension for full RFC822 parsing.' ),
    93                         'deprecated_argument'  => sprintf(
    94                                 /* translators: %s: $deprecatedArg */
    95                                 __( 'Argument %s is deprecated' ),
    96                                 '$deprecatedArg'
    97                         ),
     91                        /* translators: %s: $useimap */
     92                        'deprecated_argument'  => sprintf( __( 'Argument %s is deprecated' ), '$useimap' ),
    9893                );
    9994
Note: See TracChangeset for help on using the changeset viewer.