diff options
author | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2011-03-29 17:52:55 +0000 |
---|---|---|
committer | arron.woods <arron.woods@deae1e92-32f9-c189-e222-5b9b5081a27a> | 2011-03-29 17:52:55 +0000 |
commit | 4850f2c09dc3b8f886bd90cfb8b1b7e380b2d78e (patch) | |
tree | 82ce3c9b26605dc3aff7e3e5fc1b153cd55c6771 /library/SSRS/Soap/NTLM.php | |
parent | 6b982b9b32b2e8542c1fb32f918223b6061192a9 (diff) | |
download | php-ssrs-4850f2c09dc3b8f886bd90cfb8b1b7e380b2d78e.zip php-ssrs-4850f2c09dc3b8f886bd90cfb8b1b7e380b2d78e.tar.gz php-ssrs-4850f2c09dc3b8f886bd90cfb8b1b7e380b2d78e.tar.bz2 |
ListChildren recursive forced to boolean, ReportOutput __toString result typecast as string
Diffstat (limited to 'library/SSRS/Soap/NTLM.php')
-rwxr-xr-x | library/SSRS/Soap/NTLM.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/SSRS/Soap/NTLM.php b/library/SSRS/Soap/NTLM.php index 32c9ff1..bb85037 100755 --- a/library/SSRS/Soap/NTLM.php +++ b/library/SSRS/Soap/NTLM.php @@ -143,7 +143,7 @@ class SSRS_Soap_NTLM extends SoapClient { curl_setopt($handle, CURLOPT_POSTFIELDS, $data); } - $response = curl_exec($handle); + $response = curl_exec($handle); if($response === false) { throw new SSRS_Soap_Exception('CURL error: ' . curl_error($handle), curl_errno($handle)); } |