diff options
author | emkael <emkael@tlen.pl> | 2017-01-02 00:56:16 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-01-02 00:56:16 +0100 |
commit | 7449a8432875bf9916c3def3c25419f2e2eb99d1 (patch) | |
tree | 8af01bafa4e456a0bf2556ebdb981cdb63b47149 /lib/phpmailer/extras/ntlm_sasl_client.php | |
parent | a6904faaaba78a5d08d2ca83de39457f540ad541 (diff) |
* bumping PHPMailer to 5.2.21
Diffstat (limited to 'lib/phpmailer/extras/ntlm_sasl_client.php')
-rw-r--r-- | lib/phpmailer/extras/ntlm_sasl_client.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/phpmailer/extras/ntlm_sasl_client.php b/lib/phpmailer/extras/ntlm_sasl_client.php index 4a08561..3fd5392 100644 --- a/lib/phpmailer/extras/ntlm_sasl_client.php +++ b/lib/phpmailer/extras/ntlm_sasl_client.php @@ -160,12 +160,12 @@ class ntlm_sasl_client_class { switch ($this->state) { case SASL_NTLM_STATE_IDENTIFY_DOMAIN: - $message = $this->TypeMsg1($this->credentials["realm"], $this->credentials["workstation"]); + $message = $this->typeMsg1($this->credentials["realm"], $this->credentials["workstation"]); $this->state = SASL_NTLM_STATE_RESPOND_CHALLENGE; break; case SASL_NTLM_STATE_RESPOND_CHALLENGE: $ntlm_response = $this->NTLMResponse(substr($response, 24, 8), $this->credentials["password"]); - $message = $this->TypeMsg3( + $message = $this->typeMsg3( $ntlm_response, $this->credentials["user"], $this->credentials["realm"], |