Explorar o código

ZIP tempnam (#6392)

fix https://github.com/FreshRSS/FreshRSS/issues/6388
Alexandre Alapetite %!s(int64=2) %!d(string=hai) anos
pai
achega
173555795a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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];
 		}