require 'Expect' http-header for non-apache webserver (like lighttpd)

This commit is contained in:
aweiher 2011-07-04 17:22:47 +02:00
parent 78363ecfb1
commit f164a63144
1 changed files with 9 additions and 2 deletions

View File

@ -756,7 +756,14 @@ function post_url($url,$params, $headers = null, &$redirects = 0) {
$curl_time = intval(get_config('system','curl_timeout'));
curl_setopt($ch, CURLOPT_TIMEOUT, (($curl_time !== false) ? $curl_time : 60));
if(is_array($headers))
if(!is_array($headers)) {
$headers = array('Expect:');
} else {
if(!in_array('Expect:', $headers)) {
array_push($headers, 'Expect:');
}
}
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$check_cert = get_config('system','verifyssl');