Changeset 55557
- Timestamp:
- 03/17/2023 02:20:24 PM (21 months ago)
- Location:
- trunk/src/wp-includes/PHPMailer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/PHPMailer.php
r54937 r55557 751 751 * @var string 752 752 */ 753 const VERSION = '6. 7';753 const VERSION = '6.8.0'; 754 754 755 755 /** … … 2426 2426 public function addrFormat($addr) 2427 2427 { 2428 if ( empty($addr[1])) { //No name provided2428 if (!isset($addr[1]) || ($addr[1] === '')) { //No name provided 2429 2429 return $this->secureHeader($addr[0]); 2430 2430 } -
trunk/src/wp-includes/PHPMailer/SMTP.php
r54937 r55557 36 36 * @var string 37 37 */ 38 const VERSION = '6. 7';38 const VERSION = '6.8.0'; 39 39 40 40 /** … … 51 51 */ 52 52 const DEFAULT_PORT = 25; 53 54 /** 55 * The SMTPs port to use if one is not specified. 56 * 57 * @var int 58 */ 59 const DEFAULT_SECURE_PORT = 465; 53 60 54 61 /** … … 188 195 'CampaignMonitor' => '/[\d]{3} 2.0.0 OK:([a-zA-Z\d]{48})/', 189 196 'Haraka' => '/[\d]{3} Message Queued \((.*)\)/', 197 'ZoneMTA' => '/[\d]{3} Message queued as (.*)/', 190 198 'Mailjet' => '/[\d]{3} OK queued as (.*)/', 191 199 ];
Note: See TracChangeset
for help on using the changeset viewer.