diff options
author | Evan Prodromou <evan@status.net> | 2009-09-15 21:50:19 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-09-15 21:50:19 -0400 |
commit | 9a9a0ae56f5ae65144e6da5014859b1e30044f8b (patch) | |
tree | ed5bef15a77007737ed4bf543234e30c920767c7 /lib/httpclient.php | |
parent | bb4b0706a4bc1daa6c3e9333abb9010dc6abf9d3 (diff) |
add cURL client with HEAD method
Diffstat (limited to 'lib/httpclient.php')
-rw-r--r-- | lib/httpclient.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/httpclient.php b/lib/httpclient.php index d606f5a6e..9b0bb6f3a 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -47,9 +47,9 @@ if (!defined('STATUSNET')) { class HTTPResponse { - var $code = null; - var $headers = null; - var $body = null; + public $code = null; + public $headers = null; + public $body = null; } /** |