curl: allow gzip

This commit is contained in:
Andrew Dolgov 2011-11-09 18:28:45 +04:00
parent b93ad1e10e
commit 268a06dc6a
1 changed files with 2 additions and 0 deletions

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;