summaryrefslogtreecommitdiff
path: root/inc/IXR_Library.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-03-23 08:16:38 +0100
committerAndreas Gohr <andi@splitbrain.org>2012-03-23 08:17:24 +0100
commit7518cd81d69733d64ee5c80a8e5df4fcaa33246d (patch)
treed304ddd1e3a23cc7fd5e61d5a194cd6234374b72 /inc/IXR_Library.php
parent4aa35ddbd2cee0d47afa9fce51390019ddc68204 (diff)
downloadrpg-7518cd81d69733d64ee5c80a8e5df4fcaa33246d.tar.gz
rpg-7518cd81d69733d64ee5c80a8e5df4fcaa33246d.tar.bz2
use correct call to parent constructor in IXR lib
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 c8255e6d9..80b534b2e 100644
--- a/inc/IXR_Library.php
+++ b/inc/IXR_Library.php
@@ -501,7 +501,7 @@ class IXR_Client extends DokuHTTPClient {
var $xmlerror = false;
function IXR_Client($server, $path = false, $port = 80) {
- $this->DokuHTTPClient();
+ parent::__construct();
if (!$path) {
// Assume we have been given a URL instead
$this->posturl = $server;