5.2.28
This commit is contained in:
parent
db4d3d0cdf
commit
acba50393d
|
|
@ -1,5 +1,8 @@
|
||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
## Version 5.2.28 (March 19th, 2020)
|
||||||
|
* Avoid deprecation notices in recent PHP versions
|
||||||
|
|
||||||
## Version 5.2.27 (November 15th 2018)
|
## Version 5.2.27 (November 15th 2018)
|
||||||
* **SECURITY** Fix potential object injection vulnerability. Reported by Sehun Oh of cyberone.kr.
|
* **SECURITY** Fix potential object injection vulnerability. Reported by Sehun Oh of cyberone.kr.
|
||||||
* Note that **the 5.2 branch is now deprecated** and will not receive security updates after 31st December 2018.
|
* Note that **the 5.2 branch is now deprecated** and will not receive security updates after 31st December 2018.
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ class PHPMailer
|
||||||
* The PHPMailer Version number.
|
* The PHPMailer Version number.
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $Version = '5.2.27';
|
public $Version = '5.2.28';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Email priority.
|
* Email priority.
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ class POP3
|
||||||
* @var string
|
* @var string
|
||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
public $Version = '5.2.27';
|
public $Version = '5.2.28';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default POP3 port number.
|
* Default POP3 port number.
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ class SMTP
|
||||||
* The PHPMailer SMTP version number.
|
* The PHPMailer SMTP version number.
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = '5.2.27';
|
const VERSION = '5.2.28';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP line break constant.
|
* SMTP line break constant.
|
||||||
|
|
@ -81,7 +81,7 @@ class SMTP
|
||||||
* @deprecated Use the `VERSION` constant instead
|
* @deprecated Use the `VERSION` constant instead
|
||||||
* @see SMTP::VERSION
|
* @see SMTP::VERSION
|
||||||
*/
|
*/
|
||||||
public $Version = '5.2.27';
|
public $Version = '5.2.28';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SMTP server port number.
|
* SMTP server port number.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue