mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Fix deleting scheduled import/exports
This commit is contained in:
parent
9ae32b68a0
commit
68a970f5d6
@ -30,10 +30,12 @@
|
||||
}
|
||||
|
||||
public function index($content = array()) {
|
||||
|
||||
if($content['scheduled']['delete']) {
|
||||
$key = key($content['scheduled']['delete']);
|
||||
ExecMethod('phpgwapi.asyncservice.cancel_timer', $key);
|
||||
foreach($content['scheduled'] as $row)
|
||||
{
|
||||
if($row['delete']) {
|
||||
$key = key($row['delete']);
|
||||
ExecMethod('phpgwapi.asyncservice.cancel_timer', $key);
|
||||
}
|
||||
}
|
||||
$async_list = ExecMethod('phpgwapi.asyncservice.read', 'importexport%');
|
||||
$data = array();
|
||||
|
Loading…
Reference in New Issue
Block a user