Browse Source

ZIP tempnam (#6392)

fix https://github.com/FreshRSS/FreshRSS/issues/6388
Alexandre Alapetite 1 year ago
parent
commit
173555795a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Services/ExportService.php

+ 1 - 1
app/Services/ExportService.php

@@ -154,7 +154,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_PATH, 'zip');
 		if ($zip_file == false) {
 			return [$zip_filename, false];
 		}