diff options
author | aweiher <dem_ist@nurfuerspam.de> | 2011-07-04 17:22:47 +0200 |
---|---|---|
committer | aweiher <dem_ist@nurfuerspam.de> | 2011-07-04 17:22:47 +0200 |
commit | f164a6314426915b0badc5dd4b067322eb1e7e32 (patch) | |
tree | b16e20d24354a0b6106257516a60410e51c1f204 | |
parent | 78363ecfb10edb29da9394770b68bb66f199e70b (diff) | |
download | volse-hubzilla-f164a6314426915b0badc5dd4b067322eb1e7e32.tar.gz volse-hubzilla-f164a6314426915b0badc5dd4b067322eb1e7e32.tar.bz2 volse-hubzilla-f164a6314426915b0badc5dd4b067322eb1e7e32.zip |
require 'Expect' http-header for non-apache webserver (like lighttpd)
-rw-r--r-- | boot.php | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -756,8 +756,15 @@ 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)) - curl_setopt($ch, CURLOPT_HTTPHEADER, $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'); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false)); |