diff options
author | Friendika <info@friendika.com> | 2010-11-25 16:13:10 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-25 16:13:10 -0800 |
commit | 555c377fdac1703d640643bcedadff8d90721bec (patch) | |
tree | ac20a31e1bd09df2f426e2b86265057eb202655f | |
parent | 041df1c011f6adeffe949eea2a6077a66437c913 (diff) | |
download | volse-hubzilla-555c377fdac1703d640643bcedadff8d90721bec.tar.gz volse-hubzilla-555c377fdac1703d640643bcedadff8d90721bec.tar.bz2 volse-hubzilla-555c377fdac1703d640643bcedadff8d90721bec.zip |
need app
-rw-r--r-- | boot.php | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -388,6 +388,9 @@ function t($s) { if(! function_exists('fetch_url')) { function fetch_url($url,$binary = false, &$redirects = 0) { + + $a = get_app(); + $ch = curl_init($url); if(($redirects > 8) || (! $ch)) return false; @@ -420,6 +423,8 @@ function fetch_url($url,$binary = false, &$redirects = 0) { $s = curl_exec($ch); +// logger('Curl ' . curl_getinfo($ch,CURLINFO_HTTP_CODE)); + $http_code = intval(curl_getinfo($ch, CURLINFO_HTTP_CODE)); $header = substr($s,0,strpos($s,"\r\n\r\n")); if(stristr($header,'100') && (strlen($header) < 30)) { @@ -437,7 +442,6 @@ function fetch_url($url,$binary = false, &$redirects = 0) { return fetch_url($url,$binary,$redirects); } } - $a = get_app(); $a->set_curl_code($http_code); $body = substr($s,strlen($header)+4); $a->set_curl_headers($header); @@ -450,6 +454,7 @@ function fetch_url($url,$binary = false, &$redirects = 0) { if(! function_exists('post_url')) { function post_url($url,$params, $headers = null, &$redirects = 0) { + $a = get_app(); $ch = curl_init($url); if(($redirects > 8) || (! $ch)) return false; @@ -497,7 +502,6 @@ function post_url($url,$params, $headers = null, &$redirects = 0) { return post_url($url,$binary,$headers,$redirects); } } - $a = get_app(); $a->set_curl_code($http_code); $body = substr($s,strlen($header)+4); $a->set_curl_headers($header); |