diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-13 22:01:23 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-13 22:01:23 -0700 |
commit | d96ae0f9f59711112801d478abba7f7120ec0ad3 (patch) | |
tree | 1d5699498fc52c205f6b858e3acc2e916b2a5ad3 /boot.php | |
parent | bf77043b5137dcfe2d59a49d300e01be3e6e3674 (diff) | |
download | volse-hubzilla-d96ae0f9f59711112801d478abba7f7120ec0ad3.tar.gz volse-hubzilla-d96ae0f9f59711112801d478abba7f7120ec0ad3.tar.bz2 volse-hubzilla-d96ae0f9f59711112801d478abba7f7120ec0ad3.zip |
can no longer avoid recording the curl response code
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -100,6 +100,8 @@ class App { private $baseurl; private $db; + private $curl_code; + function __construct() { $this->config = array(); @@ -185,6 +187,14 @@ class App { )); } + function set_curl_code($code) { + $this->curl_code = $code; + } + + function get_curl_code() { + return $this->curl_code; + } + }} // retrieve the App structure @@ -347,6 +357,9 @@ function fetch_url($url,$binary = false) { curl_setopt($ch, CURLOPT_BINARYTRANSFER,1); $s = curl_exec($ch); + $info = curl_getinfo($ch); + $a = get_app(); + $a->set_curl_code($info['http_code']); curl_close($ch); return($s); }} @@ -376,6 +389,9 @@ function post_url($url,$params) { } $s = curl_exec($ch); + $info = curl_getinfo($ch); + $a = get_app(); + $a->set_curl_code($info['http_code']); curl_close($ch); return($s); }} |