Changeset 60888
- Timestamp:
- 10/01/2025 01:21:33 PM (6 weeks ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
-
PHPMailer/PHPMailer.php (modified) (3 diffs)
-
PHPMailer/POP3.php (modified) (1 diff)
-
PHPMailer/SMTP.php (modified) (1 diff)
-
class-wp-phpmailer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php
r60813 r60888 769 769 * @var string 770 770 */ 771 const VERSION = '6.11. 0';771 const VERSION = '6.11.1'; 772 772 773 773 /** … … 1242 1242 * @see https://www.andrew.cmu.edu/user/agreen1/testing/mrbs/web/Mail/RFC822.php A more careful implementation 1243 1243 * 1244 * @param string $addrstrThe address list string1245 * @param string|null $deprecatedArgDeprecated argument since 6.11.0.1246 * @param string $charsetThe charset to use when decoding the address list string.1244 * @param string $addrstr The address list string 1245 * @param null $useimap Deprecated argument since 6.11.0. 1246 * @param string $charset The charset to use when decoding the address list string. 1247 1247 * 1248 1248 * @return array 1249 1249 */ 1250 public static function parseAddresses($addrstr, $ deprecatedArg= null, $charset = self::CHARSET_ISO88591)1251 { 1252 if ($ deprecatedArg!== null) {1250 public static function parseAddresses($addrstr, $useimap = null, $charset = self::CHARSET_ISO88591) 1251 { 1252 if ($useimap !== null) { 1253 1253 trigger_error(self::lang('deprecated_argument'), E_USER_DEPRECATED); 1254 1254 } … … 2483 2483 'imap_recommended' => 'Using simplified address parser is not recommended. ' . 2484 2484 'Install the PHP IMAP extension for full RFC822 parsing.', 2485 'deprecated_argument' => 'Argument $ deprecatedArgis deprecated',2485 'deprecated_argument' => 'Argument $useimap is deprecated', 2486 2486 ]; 2487 2487 if (empty($lang_path)) { -
trunk/src/wp-includes/PHPMailer/POP3.php
r60813 r60888 47 47 * @var string 48 48 */ 49 const VERSION = '6.11. 0';49 const VERSION = '6.11.1'; 50 50 51 51 /** -
trunk/src/wp-includes/PHPMailer/SMTP.php
r60813 r60888 36 36 * @var string 37 37 */ 38 const VERSION = '6.11. 0';38 const VERSION = '6.11.1'; 39 39 40 40 /** -
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.