Changeset 60888 for trunk/src/wp-includes/PHPMailer/PHPMailer.php
- Timestamp:
- 10/01/2025 01:21:33 PM (5 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php (modified) (3 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)) {
Note: See TracChangeset
for help on using the changeset viewer.