Make WordPress Core


Ignore:
Timestamp:
06/14/2022 02:36:29 PM (4 years ago)
Author:
desrosj
Message:

External Libraries: Upgrade PHPMailer to version 6.6.2.

Release notes: https://github.com/PHPMailer/PHPMailer/releases/tag/v6.6.2.

For a full list of changes in this update, see the PHPMailer GitHub: https://github.com/PHPMailer/PHPMailer/compare/v6.6.0...v6.6.2.

Props ayeshrajans, jrf.
Fixes #55976.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/PHPMailer/SMTP.php

    r52811 r53500  
    3636     * @var string
    3737     */
    38     const VERSION = '6.6.0';
     38    const VERSION = '6.6.2';
    3939
    4040    /**
     
    10381038        }
    10391039
    1040         $this->setError('');
     1040        //Don't clear the error store when using keepalive
     1041        if ($command !== 'RSET') {
     1042            $this->setError('');
     1043        }
    10411044
    10421045        return true;
Note: See TracChangeset for help on using the changeset viewer.