Changeset 60797 for trunk/src/wp-includes/PHPMailer/PHPMailer.php
- Timestamp:
- 09/24/2025 10:41:39 AM (9 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php
r60623 r60797 877 877 { 878 878 //Check overloading of mail function to avoid double-encoding 879 if ((int)ini_get('mbstring.func_overload') & 1) { // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecated879 if ((int)ini_get('mbstring.func_overload') & 1) { 880 880 $subject = $this->secureHeader($subject); 881 881 } else { … … 1533 1533 } elseif (defined('INTL_IDNA_VARIANT_2003')) { 1534 1534 //Fall back to this old, deprecated/removed encoding 1535 // phpcs:ignore PHPCompatibility.Constants.RemovedConstants.intl_idna_variant_2003Deprecated1536 1535 $punycode = idn_to_ascii($domain, $errorcode, \INTL_IDNA_VARIANT_2003); 1537 1536 } else { 1538 1537 //Fall back to a default we don't know about 1539 // phpcs:ignore PHPCompatibility.ParameterValues.NewIDNVariantDefault.NotSet1540 1538 $punycode = idn_to_ascii($domain, $errorcode); 1541 1539 }
Note: See TracChangeset
for help on using the changeset viewer.