[DXAtlas export] Fix for some systems when writing temp file

pull/2395/head
Andreas 2023-08-08 21:00:24 +02:00
rodzic 8a8abcf466
commit f89e877b8e
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -108,7 +108,7 @@ class Dxatlas extends CI_Controller {
if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
$zipFileName = 'dxatlas_gridsquares_'. $band . '.zip';
// Prepare File
$file = tempnam("tmp", "zip");
$file = tempnam(".", "zip");
$zip = new ZipArchive();
$zip->open($file, ZipArchive::OVERWRITE);