From 04cf16cc94d26f2a1cf1e4f1ebead99f5659011e Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Tue, 5 Sep 2023 17:28:22 +0200 Subject: [PATCH 1/2] Update maintenance.php Fixed URL of ImportCSV function --- front/maintenance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/maintenance.php b/front/maintenance.php index 0c86d4c7..f9fe7f24 100755 --- a/front/maintenance.php +++ b/front/maintenance.php @@ -707,7 +707,7 @@ function askImportCSV() { function ImportCSV() { // Execute - $.get('/php/server/devices.php?action=ImportCSV', function(msg) { + $.get('php/server/devices.php?action=ImportCSV', function(msg) { showMessage (msg); }); } From 2e407d9e8f3c5a80d482178c7a79be717e380187 Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Tue, 5 Sep 2023 17:33:47 +0200 Subject: [PATCH 2/2] Update maintenance.php Fixed URL of ExportCSV function --- front/maintenance.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/maintenance.php b/front/maintenance.php index f9fe7f24..94ebf11e 100755 --- a/front/maintenance.php +++ b/front/maintenance.php @@ -695,7 +695,7 @@ function askExportCSV() { function ExportCSV() { // Execute - openInNewTab(window.location.origin + "/php/server/devices.php?action=ExportCSV") + openInNewTab("php/server/devices.php?action=ExportCSV") } // Import CSV