From 16b3d89ffe9aa5cf7d939e63c28bf0e2964e0639 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Sun, 5 Sep 2021 14:56:30 +0200 Subject: [PATCH] [DX Atlas Gridsquare Export] Changed filename for export. --- application/controllers/Dxatlas.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Dxatlas.php b/application/controllers/Dxatlas.php index 313f6f22..a749b257 100644 --- a/application/controllers/Dxatlas.php +++ b/application/controllers/Dxatlas.php @@ -25,7 +25,7 @@ class Dxatlas extends CI_Controller { } - public function export() { + public function export() { $this->load->model('dxatlas_model'); // Parameters @@ -100,7 +100,7 @@ class Dxatlas extends CI_Controller { } function makeZip($gridWkdString, $gridCfmString, $band) { - $zipFileName = $this->session->userdata('user_callsign') . '_'. $band . '.zip'; + $zipFileName = 'dxatlas_gridsquares_'. $band . '.zip'; // Prepare File $file = tempnam("tmp", "zip"); $zip = new ZipArchive();