mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 09:38:53 +01:00
async_data is NOT NULL, therefore we should not attempt to write a NULL, even if most MySQL servers dont complain
This commit is contained in:
parent
c3a99d13a0
commit
27fc9a48d2
@ -511,7 +511,8 @@ class asyncservice
|
||||
}
|
||||
else
|
||||
{
|
||||
$row['async_data'] = json_php_unserialize($row['async_data'], true); // allow non-serialized data
|
||||
$row['async_data'] = !empty($row['async_data']) ?
|
||||
json_php_unserialize($row['async_data'], true) : null; // allow non-serialized data
|
||||
}
|
||||
$jobs[$row['async_id']] = egw_db::strip_array_keys($row,'async_');
|
||||
}
|
||||
@ -539,7 +540,7 @@ class asyncservice
|
||||
'async_next' => $job['next'],
|
||||
'async_times' => json_encode($job['times']),
|
||||
'async_method' => $job['method'],
|
||||
'async_data' => $job['data'] ? json_encode($job['data']) : null,
|
||||
'async_data' => $job['data'] ? json_encode($job['data']) : '',
|
||||
'async_account_id'=> $job['account_id'],
|
||||
);
|
||||
$where['async_id'] = $job['id'];
|
||||
|
Loading…
Reference in New Issue
Block a user