mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
for api.queue close session to NOT block other requests (api.queue should NOT be used for changing something in session)
This commit is contained in:
parent
f35de819a7
commit
7a7c04ccc8
@ -88,6 +88,8 @@ class Request
|
||||
// do we have a single request or an array of queued requests
|
||||
if ($menuaction == 'api.queue')
|
||||
{
|
||||
// close session to NOT block other requests (api.queue should NOT be used for changing something in session)
|
||||
$GLOBALS['egw']->session->commit_session();
|
||||
$responses = array();
|
||||
$response = Response::get();
|
||||
foreach($parameters[0] as $uid => $data)
|
||||
|
Loading…
Reference in New Issue
Block a user