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