mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
fixed fatal error, if there are no parameters
This commit is contained in:
parent
70a7026915
commit
abac9e96fe
@ -56,7 +56,7 @@ class egw_json_request
|
||||
foreach($parameters as $uid => $data)
|
||||
{
|
||||
//error_log("$uid: menuaction=$data[menuaction], parameters=".array2string($data['parameters']));
|
||||
$this->handleRequest($data['menuaction'], $data['parameters']);
|
||||
$this->handleRequest($data['menuaction'], (array)$data['parameters']);
|
||||
$responses[$uid] = $response->initResponseArray();
|
||||
//error_log("responses[$uid]=".array2string($responses[$uid]));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user