From f0f679c1fb35acba5291a083e088571ff74f8e63 Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Sun, 18 Aug 2019 18:25:41 +0100 Subject: [PATCH] Data dir holds backup dir now --- lib/file-control-xhr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/file-control-xhr.php b/lib/file-control-xhr.php index 5ef2668..0b943e6 100644 --- a/lib/file-control-xhr.php +++ b/lib/file-control-xhr.php @@ -359,7 +359,7 @@ if (!$error && $_GET['action']=="save") { $backupDirFormat = "Y-m-d"; // Establish the base, host and date dir parts... - $backupDirBase = str_replace("\\","/",dirname(__FILE__))."/../backups/"; + $backupDirBase = str_replace("\\","/",dirname(__FILE__))."/../data/backups/"; $backupDirHost = isset($ftpSite) ? parse_url($ftpSite,PHP_URL_HOST) : "localhost"; $backupDirDate = date($backupDirFormat);