summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorGerrit Uitslag <klapinklapin@gmail.com>2015-06-15 21:13:39 +0200
committerGerrit Uitslag <klapinklapin@gmail.com>2015-06-15 21:13:39 +0200
commit0c43e7198c135083b88bdad3dd7876a8ff8a2870 (patch)
tree57bdace70a32fcfa85f156c6e0014bfbb88e59aa /lib/exe
parent9309fe3d19af28179da07c9d5604dcf63890b2fd (diff)
downloadrpg-0c43e7198c135083b88bdad3dd7876a8ff8a2870.tar.gz
rpg-0c43e7198c135083b88bdad3dd7876a8ff8a2870.tar.bz2
Replace old constructor call by __construct() in dokuwiki_xmlrpc_server
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/xmlrpc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/xmlrpc.php b/lib/exe/xmlrpc.php
index 61a68281f..6a0163106 100644
--- a/lib/exe/xmlrpc.php
+++ b/lib/exe/xmlrpc.php
@@ -20,7 +20,7 @@ class dokuwiki_xmlrpc_server extends IXR_Server {
$this->remote = new RemoteAPI();
$this->remote->setDateTransformation(array($this, 'toDate'));
$this->remote->setFileTransformation(array($this, 'toFile'));
- $this->IXR_Server();
+ parent::__construct();
}
/**