aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/XMLRPCCall.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/XMLRPCCall.php')
-rw-r--r--engine/classes/XMLRPCCall.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/classes/XMLRPCCall.php b/engine/classes/XMLRPCCall.php
index 3b33f3cee..fd28f1e3e 100644
--- a/engine/classes/XMLRPCCall.php
+++ b/engine/classes/XMLRPCCall.php
@@ -18,7 +18,7 @@ class XMLRPCCall {
* @param string $xml XML
*/
function __construct($xml) {
- $this->_parse($xml);
+ $this->parse($xml);
}
/**
@@ -45,7 +45,7 @@ class XMLRPCCall {
*
* @return void
*/
- private function _parse($xml) {
+ private function parse($xml) {
$xml = xml_to_object($xml);
// sanity check
@@ -59,4 +59,4 @@ class XMLRPCCall {
// parameters
$this->params = $xml->children[1]->children;
}
-} \ No newline at end of file
+}