Changeset 53500 for trunk/src/wp-includes/PHPMailer/SMTP.php
- Timestamp:
- 06/14/2022 02:36:29 PM (4 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/PHPMailer/SMTP.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/SMTP.php
r52811 r53500 36 36 * @var string 37 37 */ 38 const VERSION = '6.6. 0';38 const VERSION = '6.6.2'; 39 39 40 40 /** … … 1038 1038 } 1039 1039 1040 $this->setError(''); 1040 //Don't clear the error store when using keepalive 1041 if ($command !== 'RSET') { 1042 $this->setError(''); 1043 } 1041 1044 1042 1045 return true;
Note: See TracChangeset
for help on using the changeset viewer.