From 18bc16094c3a59102cb21ec9a4d013a40f175560 Mon Sep 17 00:00:00 2001 From: gggeek Date: Sun, 11 Jan 2015 16:37:51 +0000 Subject: [PATCH] Fixes to make the debugger work --- debugger/action.php | 8 ++++---- src/Request.php | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/debugger/action.php b/debugger/action.php index fae20652..00af2a03 100644 --- a/debugger/action.php +++ b/debugger/action.php @@ -157,20 +157,20 @@ td form {margin: 0;} // fall thru intentionally case 'describe': case 'wrap': - $msg[0] = new $msgclass('system.methodHelp', null, $id); + $msg[0] = new $msgclass('system.methodHelp', array(), $id); $msg[0]->addparam(new xmlrpcval($method)); - $msg[1] = new $msgclass('system.methodSignature', null, $id+1); + $msg[1] = new $msgclass('system.methodSignature', array(), $id+1); $msg[1]->addparam(new xmlrpcval($method)); $actionname = 'Description of method "'.$method.'"'; break; case 'list': - $msg[0] = new $msgclass('system.listMethods', null, $id); + $msg[0] = new $msgclass('system.listMethods', array(), $id); $actionname = 'List of available methods'; break; case 'execute': if (!payload_is_safe($payload)) die("Tsk tsk tsk, please stop it or I will have to call in the cops!"); - $msg[0] = new $msgclass($method, null, $id); + $msg[0] = new $msgclass($method, array(), $id); // hack! build xml payload by hand if ($wstype == 1) { diff --git a/src/Request.php b/src/Request.php index 70519319..7c93a220 100644 --- a/src/Request.php +++ b/src/Request.php @@ -31,7 +31,7 @@ class Request } } - private function xml_header($charset_encoding='') + public function xml_header($charset_encoding='') { if ($charset_encoding != '') { @@ -43,7 +43,7 @@ class Request } } - private function xml_footer() + public function xml_footer() { return ''; } -- 2.47.0