Skip to content

Commit c224b65

Browse files
Change default secure transport to TLS, because SSL is deprecated.
SSL disabled by default in Apache 2.2.30 and nginx 1.9.1. After web server update code will no longer work. Credit https://github.com/afilippov1985
1 parent 37b3bbe commit c224b65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Zend/Http/Client/Adapter/Socket.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class Zend_Http_Client_Adapter_Socket implements Zend_Http_Client_Adapter_Interf
7474
*/
7575
protected $config = array(
7676
'persistent' => false,
77-
'ssltransport' => 'ssl',
77+
'ssltransport' => 'tls',
7878
'sslcert' => null,
7979
'sslpassphrase' => null,
8080
'sslusecontext' => false

0 commit comments

Comments
 (0)