#3-Analiza-sprzedaży-AI #2

Open
pz wants to merge 7 commits from #3-Analiza-sprzedaży-AI into main
Showing only changes of commit c3c3eed46e - Show all commits

View File

@@ -576,5 +576,6 @@ function exportToCSVFile($res, $fullpath, array $headers = null, $delimiter = ';
} }
fclose($fp); fclose($fp);
return ['ok'=>true, 'path'=>$fullpath, 'rows'=>$count, 'error'=>null]; $chmod_ok = @chmod($fullpath, 0664);
return ['ok'=>true, 'path'=>$fullpath, 'rows'=>$count, 'chmod'=>$chmod_ok, 'error'=>null];
} }