|
|
@@ -111,6 +111,11 @@ class BackupJobDataTable extends DataTable implements ClientArea
|
|
|
foreach ($scheduleRepository->fetch() as $job)
|
|
|
{
|
|
|
$row = $job->getAttributes();
|
|
|
+ //workarround on daily schedule
|
|
|
+ if ($row['starttime'] == "") {
|
|
|
+ $row['starttime'] = $row['dow'];
|
|
|
+ $row['dow'] = "mon,tue,wed,thu,fri,sat,sun";
|
|
|
+ }
|
|
|
$row['backupScheduleId'] = $row['id'];
|
|
|
unset($row['id'], $row['days']);
|
|
|
$data[] = array_merge(['id' => base64_encode(json_encode($row))], $row);
|