From 45617022f7e2313190493678dbb7ec27ba34d598 Mon Sep 17 00:00:00 2001 From: Christian Seiler Date: Sat, 16 May 2026 18:41:38 +0200 Subject: [PATCH] PHP: send application/octet-stream MIME type --- php/monoformat.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/php/monoformat.php b/php/monoformat.php index 777ed64..68f9edf 100644 --- a/php/monoformat.php +++ b/php/monoformat.php @@ -195,6 +195,8 @@ $section->elements = $elements; $file = new monoformat\File(); array_push($file->sections, $section); +Header("Content-Type: application/octet-stream"); + print($file->serialize()); } // global