diff options
author | friendica <info@friendica.com> | 2014-03-24 19:01:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-24 19:01:20 -0700 |
commit | 235b0335608439b98d74a205a380d0f77baf6b4f (patch) | |
tree | dac64b919caaab4a563637bc72ed49ea58f0b98c /include/network.php | |
parent | 10f18675214acff5b4246bd6c4b13807b8e0e44f (diff) | |
download | volse-hubzilla-235b0335608439b98d74a205a380d0f77baf6b4f.tar.gz volse-hubzilla-235b0335608439b98d74a205a380d0f77baf6b4f.tar.bz2 volse-hubzilla-235b0335608439b98d74a205a380d0f77baf6b4f.zip |
that should fix it.
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php index 8e781272a..14771d88f 100644 --- a/include/network.php +++ b/include/network.php @@ -47,7 +47,7 @@ function z_fetch_url($url, $binary = false, $redirects = 0, $opts = array()) { if(! $ciphers) $ciphers = 'ALL:!eNULL'; -// @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, $ciphers); + @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, $ciphers); if (x($opts,'accept_content')){ @curl_setopt($ch,CURLOPT_HTTPHEADER, array ( @@ -155,7 +155,7 @@ function z_post_url($url,$params, $redirects = 0, $opts = array()) { if(! $ciphers) $ciphers = 'ALL:!eNULL'; -// @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, Z_CURL_CIPHERS); + @curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, $ciphers); if (x($opts,'accept_content')){ |