From: Felipe Sateler Date: Fri, 4 Oct 2013 20:18:30 +0000 (-0300) Subject: Enable cookies when fetching feeds with curl X-Git-Tag: 1.11~45^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d9eacf54a0e4e1c34c3da643753790fdf6bb44ca;p=tt-rss.git Enable cookies when fetching feeds with curl If a feed requires cookies, curl needs to have them active in order to access it. This is done by setting the COOKIE_JAR option. Since we do not need the actual cookie jar, send it to /dev/null, curl will still have a valid in-memory cookie jar. --- diff --git a/include/functions.php b/include/functions.php index e9b1270f..7c67b6d0 100644 --- a/include/functions.php +++ b/include/functions.php @@ -378,6 +378,7 @@ curl_setopt($ch, CURLOPT_USERAGENT, SELF_USER_AGENT); curl_setopt($ch, CURLOPT_ENCODING, ""); curl_setopt($ch, CURLOPT_REFERER, $url); + curl_setopt($ch, CURLOPT_COOKIEJAR, "/dev/null"); if (defined('_CURL_HTTP_PROXY')) { curl_setopt($ch, CURLOPT_PROXY, _CURL_HTTP_PROXY);