Skip to content

Commit

Permalink
Merge pull request 1EdTech#13 from InterThread/disable-curl-ssl3
Browse files Browse the repository at this point in the history
Disabled CURL SSLv3
  • Loading branch information
spvickers committed Nov 28, 2016
2 parents 06b12f7 + 952f22c commit c9cbfdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HTTPMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function send()
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_SSLVERSION,3);
//curl_setopt($ch, CURLOPT_SSLVERSION,3);
$chResp = curl_exec($ch);
$this->ok = $chResp !== false;
if ($this->ok) {
Expand Down

0 comments on commit c9cbfdd

Please sign in to comment.