From d9eacf54a0e4e1c34c3da643753790fdf6bb44ca Mon Sep 17 00:00:00 2001 From: Felipe Sateler Date: Fri, 4 Oct 2013 17:18:30 -0300 Subject: 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. --- include/functions.php | 1 + 1 file changed, 1 insertion(+) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index e9b1270fb..7c67b6d09 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); -- cgit v1.2.3