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);