summaryrefslogtreecommitdiff
path: root/inc/IXR_Library.php
diff options
context:
space:
mode:
authorGina Haeussge <osd@foosel.net>2008-04-05 13:22:53 +0200
committerGina Haeussge <osd@foosel.net>2008-04-05 13:22:53 +0200
commitc8d988350483ce9bc1ed1ff059cd386f752f4943 (patch)
tree47bbfde19726c771e4d31729e569e9e91c9c0263 /inc/IXR_Library.php
parentf7589b08ca2beebd66b4faa07aa9e3dfbc0d726d (diff)
downloadrpg-c8d988350483ce9bc1ed1ff059cd386f752f4943.tar.gz
rpg-c8d988350483ce9bc1ed1ff059cd386f752f4943.tar.bz2
Fix of invalid reference to request headers in XMLRPC client
darcs-hash:20080405112253-2b4f5-e69a8765cff9cc4b0373afca236488f8a2eb2751.gz
Diffstat (limited to 'inc/IXR_Library.php')
-rw-r--r--inc/IXR_Library.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/IXR_Library.php b/inc/IXR_Library.php
index cf8c6716c..34346587e 100644
--- a/inc/IXR_Library.php
+++ b/inc/IXR_Library.php
@@ -499,7 +499,7 @@ class IXR_Client extends DokuHTTPClient {
$request = new IXR_Request($method, $args);
$xml = $request->getXml();
- $this->$headers['Content-Type'] = 'text/xml';
+ $this->headers['Content-Type'] = 'text/xml';
if(!$this->sendRequest($this->posturl,$xml,'RAW')){
$this->xmlerror = new IXR_Error(-32300, 'transport error - '.$this->error);
return false;