From b30198413c1d3bf98e98498133c4a9a7437a2de1 Mon Sep 17 00:00:00 2001 From: Eliseu Amaro Date: Sun, 26 Dec 2021 21:25:37 +0000 Subject: [PATCH] [PLUGINS][Oomox] Add rel to response headers --- plugins/Oomox/Controller/Oomox.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Oomox/Controller/Oomox.php b/plugins/Oomox/Controller/Oomox.php index e2b2e6e0be..11e7a3d91f 100644 --- a/plugins/Oomox/Controller/Oomox.php +++ b/plugins/Oomox/Controller/Oomox.php @@ -238,6 +238,6 @@ class Oomox } $content = Formatting::twigRenderFile('/oomox/root_override.css.twig', ['oomox' => $oomox_table]); - return new Response($content, status: 200, headers: ['content-type' => 'text/css']); + return new Response($content, status: 200, headers: ['content-type' => 'text/css', 'rel' => 'stylesheet']); } }