aboutsummaryrefslogtreecommitdiff
path: root/app/Services/ExportService.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Services/ExportService.php')
-rw-r--r--app/Services/ExportService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Services/ExportService.php b/app/Services/ExportService.php
index 797aadbb5..076524625 100644
--- a/app/Services/ExportService.php
+++ b/app/Services/ExportService.php
@@ -149,7 +149,7 @@ class FreshRSS_Export_Service {
// From https://stackoverflow.com/questions/1061710/php-zip-files-on-the-fly
$zip_file = tempnam(TMP_PATH, 'zip');
- if ($zip_file == false) {
+ if ($zip_file === false) {
return [$zip_filename, false];
}
$zip_archive = new ZipArchive();