diff options
Diffstat (limited to 'library')
-rwxr-xr-x | library/SSRS/Soap/NTLM.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/SSRS/Soap/NTLM.php b/library/SSRS/Soap/NTLM.php index 3820de8..cc5b0fd 100755 --- a/library/SSRS/Soap/NTLM.php +++ b/library/SSRS/Soap/NTLM.php @@ -132,7 +132,7 @@ class NTLM extends \SoapClient { curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_NTLM); $headers = array( - 'Method: ' . ($data === null) ? 'GET' : 'POST', + 'Method: ' . (($data === null) ? 'GET' : 'POST'), 'Connection: Keep-Alive', 'User-Agent: PHP-SOAP-CURL', ); @@ -174,4 +174,4 @@ class NTLM extends \SoapClient { return $this->_lastResponse; } -}
\ No newline at end of file +} |