Skip to content

Commit

Permalink
#26, Updating PHPMailer, v5.2.26.
Browse files Browse the repository at this point in the history
Signed-off-by:Ivan Tcholakov <[email protected]>
  • Loading branch information
ivantcholakov committed Nov 5, 2017
1 parent 3ba0867 commit eea7046
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion third_party/phpmailer/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.25
5.2.26
4 changes: 3 additions & 1 deletion third_party/phpmailer/class.phpmailer.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PHPMailer
* The PHPMailer Version number.
* @var string
*/
public $Version = '5.2.25';
public $Version = '5.2.26';

/**
* Email priority.
Expand Down Expand Up @@ -659,6 +659,8 @@ public function __construct($exceptions = null)
if ($exceptions !== null) {
$this->exceptions = (boolean)$exceptions;
}
//Pick an appropriate debug output format automatically
$this->Debugoutput = (strpos(PHP_SAPI, 'cli') !== false ? 'echo' : 'html');
}

/**
Expand Down
2 changes: 1 addition & 1 deletion third_party/phpmailer/class.pop3.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class POP3
* @var string
* @access public
*/
public $Version = '5.2.25';
public $Version = '5.2.26';

/**
* Default POP3 port number.
Expand Down
4 changes: 2 additions & 2 deletions third_party/phpmailer/class.smtp.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class SMTP
* The PHPMailer SMTP version number.
* @var string
*/
const VERSION = '5.2.25';
const VERSION = '5.2.26';

/**
* SMTP line break constant.
Expand Down Expand Up @@ -81,7 +81,7 @@ class SMTP
* @deprecated Use the `VERSION` constant instead
* @see SMTP::VERSION
*/
public $Version = '5.2.25';
public $Version = '5.2.26';

/**
* SMTP server port number.
Expand Down

0 comments on commit eea7046

Please sign in to comment.