fix TypeError: fpassthru(): Argument #1 ($stream) must be of type resource, string given

This commit is contained in:
ralf 2022-04-21 11:03:55 +02:00
parent 554d125d96
commit 12c0f4efd6

View File

@ -453,7 +453,7 @@ class importexport_export_ui {
($_GET['_type'] ? $_GET['_type'] : 'application/text') . ($charset ? '; charset='.$charset : ''),
filesize($tmpfname));
fpassthru($tmpfname);
readfile($tmpfname);
unlink($tmpfname);