Bug fixes and code beautification
* Fixed password masking when the message has more than one password * Reading php://input in a separate line, for later debugging purposes
This commit is contained in:
@@ -47,7 +47,8 @@ class jsonRPCServer {
|
||||
}
|
||||
|
||||
// reads the input data
|
||||
$request = json_decode(file_get_contents('php://input'),true);
|
||||
$request_string = file_get_contents('php://input');
|
||||
$request = json_decode($request_string,true);
|
||||
|
||||
// executes the task on local object
|
||||
try {
|
||||
|
Reference in New Issue
Block a user