mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-15 02:19:36 +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
0f8a3251c4
commit
10f8d54f46
@ -88,6 +88,8 @@ class Request
|
|||||||
// do we have a single request or an array of queued requests
|
// do we have a single request or an array of queued requests
|
||||||
if ($menuaction == 'api.queue')
|
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();
|
$responses = array();
|
||||||
$response = Response::get();
|
$response = Response::get();
|
||||||
foreach($parameters[0] as $uid => $data)
|
foreach($parameters[0] as $uid => $data)
|
||||||
|
Loading…
Reference in New Issue
Block a user