mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
fix rare problem encountered when setting egroupware test job: first char of emailaddress (job-data) was replaced by the number 1
This commit is contained in:
parent
366332b79c
commit
c45600b256
@ -534,7 +534,7 @@ class asyncservice
|
||||
{
|
||||
if (!is_a($this->db, 'egw_db')) return 0;
|
||||
|
||||
if (isset($job['data']['next']) && isset($job['next'])) $job['data']['next'] = $job['next'];
|
||||
if (is_array($job['data']) && isset($job['data']['next']) && isset($job['next'])) $job['data']['next'] = $job['next'];
|
||||
$data = array(
|
||||
'async_next' => $job['next'],
|
||||
'async_times' => json_encode($job['times']),
|
||||
|
Loading…
Reference in New Issue
Block a user