diff --git a/lib/inliner.php b/lib/inliner.php index 7a41f51..058a4fa 100644 --- a/lib/inliner.php +++ b/lib/inliner.php @@ -59,7 +59,7 @@ function minifyCss($css) { function minifyJs($js) { // Remove newlines and tabs - $js = str_replace(array(" ", "\t"), '', $js); + $js = str_replace("\t", '', $js); // Remove spaces around operators //$js = preg_replace('~\s*([=+\-*/])\s*~', '$1', $js);