From 704e580a38df00426d554e4e1f6af0edc07406e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Sun, 4 Feb 2024 11:12:42 +0100 Subject: [PATCH] test inlining --- lib/inliner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inliner.php b/lib/inliner.php index f37217d..5a05272 100644 --- a/lib/inliner.php +++ b/lib/inliner.php @@ -43,7 +43,7 @@ function inlineScriptFromSrc($inputString) { function minifyCss($css) { // Remove comments - //$css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css); + $css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css); // Remove whitespace //$css = preg_replace('/\s+/', ' ', $css);