Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/http-ssl-v2-disable'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Aug 24, 2012
3 parents 219c9ad + 3025666 + e50c0fa commit 24efdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Client/Adapter/Socket.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public function connect($host, $port = 80, $secure = false)
if ($this->config['ssltransport'] && isset(self::$sslCryptoTypes[$this->config['ssltransport']])) {
$sslCryptoMethod = self::$sslCryptoTypes[$this->config['ssltransport']];
} else {
$sslCryptoMethod = STREAM_CRYPTO_METHOD_SSLv23_CLIENT;
$sslCryptoMethod = STREAM_CRYPTO_METHOD_SSLv3_CLIENT;
}

ErrorHandler::start();
Expand Down

0 comments on commit 24efdcc

Please sign in to comment.