MDL-17617 - fixed regressions - missing $ch

This commit is contained in:
skodak 2009-01-17 18:47:54 +00:00
parent aa944588ff
commit 7fb90df073

View File

@ -344,7 +344,10 @@ function download_file_content($url, $headers=null, $postdata=null, $fullrespons
// check if proxy (if used) should be bypassed for this url
$proxybypass = is_proxybypass($url);
$ch = curl_init($url);
if (!$ch = curl_init($url)) {
debugging('Can not init curl.');
return false;
}
// set extra headers
if (is_array($headers) ) {