You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Service/SystemService.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -375,7 +375,7 @@ function runTimerJobs()
375
375
$diff = $previous->diff($now); // calculate the difference.
376
376
if (!$sLastBackupTimeStamp || $diff->h >= $sExternalBackupAutoInterval) // if there was no previous backup, or if the interval suggests we do a backup now.
377
377
{
378
-
$systemService->copyBackupToExternalStorage(); // Tell system service to do an external storage backup.
378
+
$this->copyBackupToExternalStorage(); // Tell system service to do an external storage backup.
379
379
$now = new \DateTime(); // update the LastBackupTimeStamp.
380
380
$sSQL = "UPDATE config_cfg SET cfg_value='" . $now->format('Y-m-d H:i:s') . "' WHERE cfg_name='sLastBackupTimeStamp'";
0 commit comments