|
|
@@ -38,13 +38,12 @@ class BackupJobProvider extends BaseDataProvider implements ClientArea
|
|
|
if ($this->actionElementId)
|
|
|
{
|
|
|
$this->data = json_decode(base64_decode($this->actionElementId), true);
|
|
|
- logModuleCall(
|
|
|
- 'proxmoxCloud',
|
|
|
- __FUNCTION__,
|
|
|
- $this->data,
|
|
|
- 'Debug',
|
|
|
- base64_decode($this->actionElementId)
|
|
|
- );
|
|
|
+ //workarround on daily schedule
|
|
|
+ if ($this->data['starttime'] == "") {
|
|
|
+ $this->data['starttime'] = $this->data['dow'];
|
|
|
+ $this->data['dow'] = "mon,tue,wed,thu,fri,sat,sun";
|
|
|
+ }
|
|
|
+ $this->data['starttime'] == "" ? : "off";
|
|
|
//down
|
|
|
$dow = $this->data['dow'];
|
|
|
$this->data['dow'] = explode(",", $dow);
|