diff options
Diffstat (limited to 'app/Services/ExportService.php')
| -rw-r--r-- | app/Services/ExportService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Services/ExportService.php b/app/Services/ExportService.php index eb1ec3f84..b5630f57f 100644 --- a/app/Services/ExportService.php +++ b/app/Services/ExportService.php @@ -165,7 +165,7 @@ class FreshRSS_Export_Service { $zip_filename = 'freshrss_' . $this->username . '_' . $day . '_export.zip'; // From https://stackoverflow.com/questions/1061710/php-zip-files-on-the-fly - $zip_file = @tempnam('/tmp', 'zip'); + $zip_file = tempnam('/tmp', 'zip'); $zip_archive = new ZipArchive(); $zip_archive->open($zip_file, ZipArchive::OVERWRITE); |
