]> git.wh0rd.org - tt-rss.git/commitdiff
Added curl CURLOPT_NOBODY option in geturl function to ensure the HEAD method is...
authorDave Zaikos <myself@zaikos.com>
Sun, 22 Jun 2014 05:08:57 +0000 (01:08 -0400)
committerDave Zaikos <myself@zaikos.com>
Sun, 22 Jun 2014 05:08:57 +0000 (01:08 -0400)
include/functions2.php

index d6a399ffcdd9a1fd4db9a5c7740abfe9ceb4d00d..3e33672402f0ccd6ea0d33096ceae03ec79bebbf 100644 (file)
                curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:5.0) Gecko/20100101 Firefox/5.0 Firefox/5.0');
                curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
                curl_setopt($curl, CURLOPT_HEADER, true);
+               curl_setopt($curl, CURLOPT_NOBODY, true);
                curl_setopt($curl, CURLOPT_REFERER, $url);
                curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate');
                curl_setopt($curl, CURLOPT_AUTOREFERER, true);