fix file names

This commit is contained in:
quenousimporte 2025-05-26 17:18:28 +02:00
parent e8e39f370b
commit 6096aa39a1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
$path = $path . '.md'; $path = $path . '.md';
if (file_exists($path)) if (file_exists($path))
{ {
$zip->addFile($path, basename($path)); $zip->addFile($path, str_replace(' ', '-', basename($path)));
} }
} }
} }