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

这个提交包含在:
Andreas 2023-08-08 21:00:24 +02:00
父节点 8a8abcf466
当前提交 f89e877b8e

查看文件

@ -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);