We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1e6f01 + df3e8ec commit 1374ec4Copy full SHA for 1374ec4
app/Http/Controllers/ReportsController.php
@@ -436,10 +436,8 @@ public function postCustom(CustomAssetReportRequest $request) : StreamedResponse
436
// Open output stream
437
$handle = fopen('php://output', 'w');
438
stream_set_timeout($handle, 2000);
439
-
440
- if ($request->filled('use_bom')) {
441
- fprintf($handle, chr(0xEF).chr(0xBB).chr(0xBF));
442
- }
+
+ fprintf($handle, chr(0xEF).chr(0xBB).chr(0xBF));
443
444
$header = [];
445
0 commit comments