Changeset 60888 for trunk/src/wp-includes/class-wp-phpmailer.php
- Timestamp:
- 10/01/2025 01:21:33 PM (5 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-phpmailer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-phpmailer.php
r60813 r60888 42 42 'buggy_php' => sprintf( 43 43 /* 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.' ), 47 45 'mail.add_x_header', 48 46 'php.ini' … … 91 89 'no_smtputf8' => __( 'Server does not support SMTPUTF8 needed to send to Unicode addresses' ), 92 90 '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' ), 98 93 ); 99 94
Note: See TracChangeset
for help on using the changeset viewer.