Changeset 55557 for trunk/src/wp-includes/PHPMailer/PHPMailer.php
- Timestamp:
- 03/17/2023 02:20:24 PM (2 years ago)
- File:
-
- 1 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 }
Note: See TracChangeset
for help on using the changeset viewer.