mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:07 +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
|
||||
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