From 3f410c500225c2b25a4debd27508d0c42e7da651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Ryb=C3=A1rsky?= Date: Sun, 4 Feb 2024 11:07:37 +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 058a4fa..b90a8ae 100644 --- a/lib/inliner.php +++ b/lib/inliner.php @@ -62,7 +62,7 @@ function minifyJs($js) { $js = str_replace("\t", '', $js); // Remove spaces around operators - //$js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js); + $js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js); return trim($js); } \ No newline at end of file