1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 13:21:29 +00:00

curl: allow gzip

This commit is contained in:
Andrew Dolgov
2011-11-09 18:28:45 +04:00
parent b93ad1e10e
commit 268a06dc6a

View File

@@ -382,6 +382,7 @@
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT);
curl_setopt($ch, CURLOPT_ENCODING , "gzip");
if ($post_query) {
curl_setopt($ch, CURLOPT_POST, true);
@@ -392,6 +393,7 @@
curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");
$contents = @curl_exec($ch);
if ($contents === false) {
curl_close($ch);
return false;