Update SettingsController.php

This commit is contained in:
1day2die 2021-12-07 20:27:06 +01:00
parent cb89f65885
commit f9206fd7ce

View file

@ -86,7 +86,7 @@ class SettingsController extends Controller
$res = $zip->open($zip_safe_path, ZipArchive::CREATE|ZipArchive::OVERWRITE);
$result = $this::rglob(storage_path('app/invoice/*'));
if ($res === TRUE) {
$zip->addFromString("1. Info.txt","This Archive contains all Invoices from all Users!");
$zip->addFromString("1. Info.txt","This Archive contains all Invoices from all Users!\n If there are no Invoices here, no Invoices have ever been created!");
foreach($result as $file){
if (file_exists($file) && is_file($file)) {
$zip->addFile($file,basename($file));