summaryrefslogtreecommitdiff
path: root/lib/curlclient.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/curlclient.php')
-rw-r--r--lib/curlclient.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/curlclient.php b/lib/curlclient.php
index f45c3c2f4..99c3b6aa4 100644
--- a/lib/curlclient.php
+++ b/lib/curlclient.php
@@ -88,10 +88,14 @@ class CurlClient extends HTTPClient
return $this->parseResults($result);
}
+ function post($url, $headers=null)
+ {
+ }
+
function setup($ch)
{
curl_setopt_array($ch,
- array(CURLOPT_USERAGENT, $this->userAgent(),
+ array(CURLOPT_USERAGENT => $this->userAgent(),
CURLOPT_HEADER => true,
CURLOPT_RETURNTRANSFER => true));
}