From 20588d48aa92ec2f37bfcc398bbb0ad08c6a2498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Sun, 4 Feb 2024 11:12:54 +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 5a05272..52cc485 100644 --- a/lib/inliner.php +++ b/lib/inliner.php @@ -46,7 +46,7 @@ function minifyCss($css) { $css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css); // Remove whitespace - //$css = preg_replace('/\s+/', ' ', $css); + $css = preg_replace('/\s+/', ' ', $css); // Remove spaces around colons //$css = str_replace(' ', '', $css);